You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
370 B
14 lines
370 B
ALL: build
|
|
|
|
.PHONY: build
|
|
build:
|
|
doodad convert -t "Bird (red)" left-1.png left-2.png right-1.png right-2.png \
|
|
dive-left.png dive-right.png bird-red.doodad
|
|
doodad install-script bird.js bird-red.doodad
|
|
|
|
# Tag the category for these doodads
|
|
for i in *.doodad; do\
|
|
doodad edit-doodad --tag "category=creatures" $${i};\
|
|
done
|
|
|
|
cp *.doodad ../../../assets/doodads/
|