bouncing_bag.sprite 438 B

1234567891011121314151617181920212223242526
  1. (supertux-sprite
  2. (action
  3. (name "left")
  4. (fps 20)
  5. (hitbox 16 7 32 32)
  6. (images "bag-bounce-0.png"
  7. "bag-bounce-1.png"
  8. "bag-bounce-2.png"
  9. "bag-bounce-3.png"
  10. "bag-bounce-4.png"
  11. )
  12. )
  13. (action
  14. (name "right")
  15. (fps 20)
  16. (hitbox 16 7 32 32)
  17. (mirror-action "left")
  18. )
  19. (action
  20. (name "squished")
  21. (hitbox 0 0 32 32)
  22. (images "bag-squished.png")
  23. )
  24. )