Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. x += xsp
  2. y += ysp
  3.  
  4. {
  5. if xsp > xspmax
  6. xsp = xspmax;
  7. }
  8. //right
  9. {
  10. {
  11. if (keyboard_check(vk_right)) && (!keyboard_check(vk_left)) image_xscale = 1
  12. if (xsp >= 0)
  13. xsp += 0.08;
  14. }
  15.  
  16. {
  17. if image_xscale = 1 && (!keyboard_check(vk_right))
  18. if (xsp > 0)
  19. xsp -= 0.4;
  20. if xsp <= 0
  21. xsp = 0
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement