add new tiles
This commit is contained in:
parent
d05e9594ac
commit
9c84917ff2
14 changed files with 34 additions and 24 deletions
14
asset/Makefile
Normal file
14
asset/Makefile
Normal file
|
@ -0,0 +1,14 @@
|
|||
all: ../data/sprites.json ../images/sprites.png ../images/tiles.png
|
||||
|
||||
../data/sprites.json: sprites/*.png
|
||||
spriter sprites/
|
||||
mv sprites.json ../data/
|
||||
rm -f sprites.png
|
||||
|
||||
../images/sprites.png: sprites/*.png
|
||||
spriter sprites/
|
||||
rm -f sprites.json
|
||||
mv sprites.png ../images/
|
||||
|
||||
../images/tiles.png: tiles/*.png
|
||||
montage -tile 1x -geometry 24x24+0+0 -background Transparent $^ $@
|
Reference in a new issue