https://github.com/gmelodie/rust-game
Rust gaming snippets
https://github.com/gmelodie/rust-game
Last synced: 7 months ago
JSON representation
Rust gaming snippets
- Host: GitHub
- URL: https://github.com/gmelodie/rust-game
- Owner: gmelodie
- License: mit
- Created: 2023-02-06T18:46:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-10T18:24:30.000Z (over 2 years ago)
- Last Synced: 2025-01-24T11:44:28.999Z (9 months ago)
- Language: Rust
- Homepage: https://gmelodie.github.io/rust-game/
- Size: 634 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rust-game
Rust gaming snippets1. First attempt on gravity and drawing on the screen.
2. Multiple polygons bouncing.### Building and serving WASM
Build it
```bash
./utils/wasm/build.sh
```
And serve it (you can use any other web server)
```bash
basic-http-server static
```