Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     if(x > PLAYER.screen.width-width-16)
  3.     {
  4.         x = PLAYER.screen.width-width-16;
  5.     }
  6.     else if(x < 16)
  7.     {
  8.         x = 16;
  9.     }
  10.     if(y > PLAYER.screen.height-height-16)
  11.     {
  12.         y = PLAYER.screen.height-height-16;
  13.     }
  14.     else if(y < 16)
  15.     {
  16.         y = 16;
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement