Guest User

Untitled

a guest
Feb 12th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. if place_meeting (x,y,o_ladder)
  2. {
  3. if (keyboard_check(vk_up))
  4. {
  5. x = other.x+16;
  6. y -= 6;
  7. gravity = 0;
  8. }
  9. if (keyboard_check(vk_down))
  10. {
  11. x = other.x+16;
  12. y -= -6;
  13. gravity = 0;
  14. }
  15. }
Add Comment
Please, Sign In to add comment