Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function OnMouseDown () {
  2.      Fball1x = ball1.transform.position.x;
  3.      Fball1y = ball1.transform.position.y;
  4.    
  5.      ball1.transform.position.x=ball2.transform.position.x;
  6.      ball1.transform.position.y=ball2.transform.position.y;
  7.        
  8.      ball2.transform.position.x=Fball1x;
  9.      ball2.transform.position.y=Fball1y;
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement