left.sprite 482 B

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