An adapted version of the Rocket game, running on WASM!
Read the blog post about the development of this WASM version (includes an embedded canvas where you can play the game).
As you can see in the screenshot, you are the red rocket and have to save the world from the yellow invaders. To do so, you can use the following controls:
Keyboard | Action |
---|---|
↑ | Boost |
← | Rotate left |
→ | Rotate right |
Space | Shoot |
Follow the steps on the hellorust website
in order to set up everything. Besides the wasm32-unknown-unknown
target, the post_build.py
script requires python 2.7 and wasm-gc
.
After setting things up, you should be able to compile the code using the commands below:
cargo build --release --target wasm32-unknown-unknown
python post_build.py
The generated wasm will be copied to the html
directory and wasm-gc
ed.
python -m SimpleHTTPServer
Try opening http://localhost:8000/ on your browser to check whether it works.