Noah Petherbridge
810ba193d9
* New doodad: Electric Trapdoor. It is a horizontal version of the Electric Door. Opens while powered by a button or a switch and closes when it loses power. * The Box doodad will reset to its original location if it receives a power signal from a linked Button or Switch. So for box pushing puzzles you can add a reset button in case the boxes get stuck. * Refactored the Doodad build scripts into many Makefiles for easier iteration (don't need to compile ALL doodads to test one). Updates to the JavaScript API for doodads: * Self.MoveTo(Point) is now available to set the actor's position in world coordinates.
20 lines
705 B
Makefile
20 lines
705 B
Makefile
ALL: build
|
|
|
|
.PHONY: build
|
|
build:
|
|
doodad convert -t "Switch" switch-off.png switch-on.png switch.doodad
|
|
doodad convert -t "Floor Switch" down-off.png down-on.png switch-down.doodad
|
|
doodad convert -t "Left Switch" left-off.png left-on.png switch-left.doodad
|
|
doodad convert -t "Right Switch" right-off.png right-on.png switch-right.doodad
|
|
|
|
doodad install-script switch.js switch.doodad
|
|
doodad install-script switch.js switch-down.doodad
|
|
doodad install-script switch.js switch-left.doodad
|
|
doodad install-script switch.js switch-right.doodad
|
|
|
|
# Tag the category for these doodads
|
|
for i in *.doodad; do\
|
|
doodad edit-doodad --tag "category=gizmos" $${i};\
|
|
done
|
|
|
|
cp *.doodad ../../../assets/doodads/
|