Guest User

Untitled

a guest
Jun 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. if (selectionX >= 0 && selectionY >= 0)
  2. {
  3. Debug.DrawLine(Vector3.forward * selectionY + Vector3.right * selectionX,
  4. Vector3.forward * (selectionY + 1) + Vector3.right * (selectionX + 1));
  5. Debug.DrawLine(Vector3.forward * selectionY + Vector3.right * (selectionX + 1),
  6. Vector3.forward * (selectionY + 1) + Vector3.right * selectionX);
  7. }
Add Comment
Please, Sign In to add comment