Home
Softono
obscure-resurrection

obscure-resurrection

Open source Rust
11
Stars
1
Forks
0
Issues
1
Watchers
4 years
Last Commit

About obscure-resurrection

A small game made in Bevy with Rust

Platforms

Web Self-hosted

Languages

Rust

Obscure Resurrection

Overview

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.

Gif

Run the Game

In Development For Fast Iterations

cargo run --features bevy/dynamic

In Release Mode

cargo run --release

Build the Game

Natively

cargo build --release

For the Web

To 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-cli

Make sure that you have the WASM target added.

 rustup target install wasm32-unknown-unknown

Run the following command to build the assets.

./build-web-zip.sh

You 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