1234567891011121314151617181920212223242526 |
- # Split Universal LPC sprite sheet into separate files
- #
- # Usage:
- # sprsheet split.csv prefix input.png
- #
- # will save (prefix)_cast.png, (prefix)_thrust.png, (prefix)_walk.png, ...etc
- # cast animation (7 frames)
- 448,256,0,0,0,0,0,,cast
- # thrust animation (8 frames)
- 512,256,0,256,0,0,0,,thrust
- # idle+walk animation (1+8 frames)
- 576,256,0,512,0,0,0,,walk
- # slash animation (6 frames)
- 384,256,0,768,0,0,0,,slash
- # bowing animation (13 frames)
- 832,256,0,1024,0,0,0,,bowing
- # hurt animation (6 frames)
- 384,64,0,1280,0,0,0,,hurt
|