MMO downhill racing game
A game originally made for LudumDare 50.
This now contains post-jam updates. The jam version code can be seen at the jam-version
tag.
You can play the game either on itch.io or on GitHub Pages.
Make sure to bring your friends!
First, you'll need to Install Rust.
Then, just cargo run --release
will compile and run native client with a local server.
You can pass additional arguments to control more,
like cargo run --release -- --server 0.0.0.0:1155
will only run a server binding port 1155,
or cargo run --release -- --connect ws://localhost:1155
will only run a client connecting to that port.
If you want to build a web version, you'll need to:
# Tell how to connect to the server via an env var
export CONNECT=ws://localhost:1155
# Install wasm32-unknown-unknown target support
rustup target add wasm32-unknown-unknown
# Install wasm-bindgen
cargo install wasm-bindgen-cli
# Install engine helper
cargo install cargo-geng --git https://github.com/kuviman/geng
# Compile, run local http server and open the browser once ready
cargo geng run --target wasm32-unknown-unknown --release
# You can also replace run with build, and then serve the target/geng directory yourself