Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cryscan/summer-jam

Pong but has gravity.
https://github.com/cryscan/summer-jam

bevy-engine game rust wasm

Last synced: 2 months ago
JSON representation

Pong but has gravity.

Awesome Lists containing this project

README

        

# Bounce Up!
This is a game made during the 2021 summer jam. It is written in [rust](https://www.rust-lang.org/) and is powered by [bevy engine](https://bevyengine.org/).

Live version is available [here](https://cryscan.itch.io/bounce-up).

Thanks [@fplust](https://github.com/fplust) for porting the game to bevy v0.8!

Thanks [@Bobox214](https://github.com/Bobox214) for the [star background](https://github.com/Bobox214/Kataster)!

Sound effects obtained from [Zapslat](https://www.zapsplat.com).
Background music credits to the [Ultimate MIDI Pack](https://archive.org/details/ultimidi/) (License: CC-BY-SA).

## Build for Web
Run the following command to compile:
```shell
$ wasm-pack build --release --target web
```

Then add the `index.html` into the `pkg` folder:
```html

Bounce Up!


import init from "./bounce_up.js";
init("./bounce_up_bg.wasm").then(function (wasm) {
wasm.run();
});

```

Finally copy the `assets` folder into the `pkg` folder, pack and release.