right.sprite 485 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. (supertux-sprite
  2. (action
  3. (name "off")
  4. (hitbox 0 2 20 43)
  5. (images
  6. "right-0.png"
  7. )
  8. )
  9. (action
  10. (name "turnon")
  11. (fps 18)
  12. (hitbox 0 2 20 43)
  13. (images
  14. "right-1.png"
  15. "right-2.png"
  16. "right-3.png"
  17. )
  18. )
  19. (action
  20. (name "on")
  21. (hitbox 0 2 20 43)
  22. (images
  23. "right-4.png"
  24. )
  25. )
  26. (action
  27. (name "turnoff")
  28. (fps 18)
  29. (hitbox 0 2 20 43)
  30. (images
  31. "right-3.png"
  32. "right-2.png"
  33. "right-1.png"
  34. )
  35. )
  36. )