A retro ASCII art space shooter, inspired by Vampire Survivors, written in the Bevy game engine.
A web (WASM) version of the game is available at https://jameshduffield.github.io/ascii-rust
No automated build of the windows standalone are available yet, but you can compile the app yourself.
Note: This project has been an educational exercise to further learning of the Rust programming language.
cargo run --features bevy/dynamic_linking
to run locallyTo generate the web build a new target must be installed and bundled.
rustup target install wasm32-unknown-unknown
cargo install wasm-bindgen-cli --version 0.2.92
cargo build --profile release-web --target wasm32-unknown-unknown
wasm-bindgen --out-dir ./out/ --target web ./target/wasm32-unknown-unknown/release-web/ascii.wasm
The /out
directory should then be hosted locally with any web server.