Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var gridArrayScript : scr_gridArray;
  2. var xCoord : int;
  3. var yCoord : int;
  4.  
  5. function Awake()
  6. {
  7.     xCoord = gridArrayScript.r; //sets xCoord = to the c value in the loops for the 2D array
  8.     yCoord = gridArrayScript.c; //sets yCoord = to the r value in the loops for the 2D array
  9. }
  10.  
  11. function OnMouseDown ()
  12. {
  13.     print (xCoord);
  14.     print (yCoord);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement