This is a game made in Bevy 0.6 to test things out and have fun.
Run around as Dog. Collect coins and stay alive.
You can view the game on Itch here.
cargo run --features bevy/dynamiccargo run --releasecargo build --releaseTo build for the web make sure you have wasm-bindgen-cli installed. You can do so with the following command.
cargo install -f wasm-bindgen-cliMake sure that you have the WASM target added.
rustup target install wasm32-unknown-unknownRun the following command to build the assets.
./build-web-zip.shYou can upload the dist/dist.zip file to Itch.io or any web server.
You can easily test this locally by starting a simple http server with the following command and see it at http://localhost:3000
python -m http.server --directory dist 3000