This is a game made during the 2021 summer jam. It is written in rust and is powered by bevy engine.
Live version is available here.
Thanks @fplust for porting the game to bevy v0.8!
Thanks @Bobox214 for the star background!
Sound effects obtained from Zapslat. Background music credits to the Ultimate MIDI Pack (License: CC-BY-SA).
Run the following command to compile:
$ wasm-pack build --release --target web
Then add the index.html
into the pkg
folder:
<html>
<head>
<title>Bounce Up!</title>
</head>
<body>
<script type="module">
import init from "./bounce_up.js";
init("./bounce_up_bg.wasm").then(function (wasm) {
wasm.run();
});
</script>
</body>
</html>
Finally copy the assets
folder into the pkg
folder, pack and release.