Advertisement
Guest User

jacob takes the cake

a guest
Oct 16th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. if (Greenfoot.isKeyDown("right"))
  2. {
  3. move(1);
  4. }
  5.  
  6. if (Greenfoot.isKeyDown("left"))
  7. {
  8. move(-1);
  9. }
  10.  
  11. if (Greenfoot.isKeyDown("up"))
  12. {
  13. turn(90);
  14. move(-1);
  15. turn(-90);
  16. }
  17.  
  18. if (Greenfoot.isKeyDown("down"))
  19. {
  20. turn(-90);
  21. move(-1);
  22. turn(90);
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement