12345678910111213141516171819202122232425 |
- (supertux-sprite
- (action
- (name "left")
- (fps 20)
- (hitbox 6 7 32 32)
- (images "fly-0.png"
- "fly-1.png"
- "fly-2.png"
- "fly-3.png"
- )
- )
- (action
- (name "right")
- (fps 20)
- (hitbox 6 7 32 32)
- (mirror-action "left")
- )
- (action
- (name "squished")
- (hitbox 0 0 32 32)
- (images "squished.png")
- )
- )
|