Skip to content

cryscan/summer-jam

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bounce Up!

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).

Build for Web

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.