Noah Petherbridge
c499a15c71
* Adds walking animations for the Thief. * Mobile doodads no longer moonwalk: their A.I. used to wait for the animation to finish before setting the appropriate animation, so when it changed directions it would "moonwalk" for a time. Their A.I. is now updated to cancel the animation if they change directions so to immediately play the correct animation.
12 lines
301 B
Makefile
12 lines
301 B
Makefile
ALL: build
|
|
|
|
.PHONY: build
|
|
build:
|
|
doodad convert -t "Thief" stand-right.png stand-left.png \
|
|
walk-right-{1,2,3}.png walk-left-{1,2,3}.png \
|
|
thief.doodad
|
|
doodad install-script thief.js thief.doodad
|
|
|
|
doodad edit-doodad --tag "category=creatures" thief.doodad
|
|
|
|
cp *.doodad ../../../assets/doodads/
|