Game made for the Ludum Dare 58 Compo.
Build railroads, collect garbage, and take it to the recycling centers.
Fill all recycling centers to win.
- Mouse controls to build.
- Space to start/stop your train.
- R to reset the current level.
- H for in-game help.
The game requires only the standard Rust toolchain with the wasm32-unknown-unknown target installed.
# Produces a debug build at `target/wasm32-unknown-unknown/debug`
cargo build
# Produces a production build at `target/wasm32-unknown-unknown/release`
cargo build --releaseRequires live-server.
chmod +x dev-server.sh
# Serve debug build
./dev-server.sh
# Serve release build
./dev-server.sh --releaseThis will start the development web server, watch for builds and reload the browser window if there is a new one.