Guest User

Untitled

a guest
Feb 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. document.bind('keydown', function(e) {
  2. switch (e.which) {
  3. case 37:
  4. /* !moving left */
  5. // code
  6. break;
  7. case 39:
  8. /* !moving right */
  9. // code
  10. break;
  11. case 38:
  12. /* !moving up */
  13. // code
  14. break;
  15. case 40:
  16. /* !Baller is moving down */
  17. //code
  18. }
  19. });
Add Comment
Please, Sign In to add comment