laptop.sprite 552 B

123456789101112131415161718192021222324252627282930
  1. (supertux-sprite
  2. (action
  3. (name "left")
  4. (hitbox 3 4 32 32)
  5. (images "laptop-left-0.png"
  6. "laptop-left-1.png"
  7. "laptop-left-2.png")
  8. )
  9. (action
  10. (name "default")
  11. (hitbox 3 4 32 32)
  12. (mirror-action "left")
  13. )
  14. (action
  15. (name "right")
  16. (hitbox 3 4 32 32)
  17. (mirror-action "left")
  18. )
  19. (action
  20. (name "squished-left")
  21. (hitbox 1 -19 31.8 31.8)
  22. (images "laptop-flat-left.png")
  23. )
  24. (action
  25. (name "squished-right")
  26. (hitbox 1 -19 31.8 31.8)
  27. (mirror-action "squished-left")
  28. )
  29. )