Advertisement
Guest User

Untitled

a guest
May 25th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. if (box1.x < box2.x + box2.width &&
  2. box1.x + box1.width > box2.x &&
  3. box1.y < box2.y + box2.height &&
  4. box1.height + box1.y > box2.y) {
  5. // collision detected!
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement