Advertisement
Guest User

Untitled

a guest
Nov 20th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. if(buttonInputPressed == BUTTON_RIGHT)
  2. {
  3. if(kurryDirection != BUTTON_LEFT)
  4. {
  5. snakeX += 3;
  6. }
  7. if(kurryDirection == BUTTON_RIGHT)
  8. {
  9. snakeY -= 3;
  10. }
  11. kurryDirection = BUTTON_RIGHT
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement