Ludum Dare 52
This is a placeholder repository for Ludum Dare 52.
How to play
TBD
Developing
Only Rust (edition 2021) is required to develop and build from source.
Clone this repository and then run:
cargo run
Web Assembly
By default, the game is built with OpenGL. To run on the web, it uses WASM.
First, install cargo-make
:
cargo install --force cargo-make
Now you can build the game to Web Assembly:
# Builds the game as WASM binaries to /web.
cargo make build-wasm
To run the game in a web browser (locally), run:
# Opens a web browser to http://0.0.0.0:8000, serving the /web directory.
cargo make serve-wasm