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.
88 lines
898 B
Bash
Executable File
88 lines
898 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Build all the doodads from their source files.
|
|
if [[ ! -d "./azulian" ]]; then
|
|
echo Run this script from the dev-assets/doodads/ working directory.
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p ../../assets/doodads
|
|
|
|
boy() {
|
|
cd boy/
|
|
make
|
|
cd ..
|
|
}
|
|
|
|
buttons() {
|
|
cd buttons/
|
|
make
|
|
cd ..
|
|
}
|
|
|
|
switches() {
|
|
cd switches/
|
|
make
|
|
cd ..
|
|
}
|
|
|
|
doors() {
|
|
cd doors/
|
|
make
|
|
cd ..
|
|
}
|
|
|
|
trapdoors() {
|
|
cd trapdoors/
|
|
make
|
|
cd ..
|
|
}
|
|
|
|
azulians() {
|
|
cd azulian/
|
|
make
|
|
cd ..
|
|
}
|
|
|
|
mobs() {
|
|
cd bird/
|
|
make
|
|
cd ..
|
|
}
|
|
|
|
objects() {
|
|
cd objects/
|
|
make
|
|
cd ..
|
|
|
|
cd box/
|
|
make
|
|
cd ..
|
|
}
|
|
|
|
onoff() {
|
|
cd on-off/
|
|
make
|
|
cd ..
|
|
}
|
|
|
|
warpdoor() {
|
|
cd warp-door/
|
|
make
|
|
cd ..
|
|
}
|
|
|
|
boy
|
|
buttons
|
|
switches
|
|
doors
|
|
trapdoors
|
|
azulians
|
|
mobs
|
|
objects
|
|
onoff
|
|
warpdoor
|
|
doodad edit-doodad -quiet -lock -author "Noah" ../../assets/doodads/*.doodad
|
|
doodad edit-doodad -hide ../../assets/doodads/azu-blu.doodad
|
|
doodad edit-doodad -hide ../../assets/doodads/boy.doodad
|