Merge branch 'levels' of https://github.com/Ewpratten/ludum-dare-49 into levels

This commit is contained in:
Marcelo Geldres 2021-10-04 15:28:21 -04:00
commit e0cc6068da
6 changed files with 12 additions and 6 deletions

View File

@ -1,8 +1,10 @@
{
"cSpell.words": [
"clippy",
"platformer",
"raylib",
"renderable",
"scroller",
"vergen",
"vsprintf"
]

View File

@ -1,15 +1,15 @@
# [data::loss]
![](./game/assets/logos/game-banner.png)
[![Build](https://github.com/Ewpratten/ludum-dare-49/actions/workflows/build.yml/badge.svg)](https://github.com/Ewpratten/ludum-dare-49/actions/workflows/build.yml)
[![Clippy check](https://github.com/Ewpratten/ludum-dare-49/actions/workflows/clippy.yml/badge.svg)](https://github.com/Ewpratten/ludum-dare-49/actions/workflows/clippy.yml)
[![Ludum Dare 49](https://img.shields.io/badge/Ludum%20Dare-49-orange)](https://ldjam.com/events/ludum-dare/49/$261521)
[![Rust 1.57 nightly](https://img.shields.io/badge/Rust-1.57%20nightly-orange)](https://www.rust-lang.org/)
[![Made with Raylib](https://img.shields.io/badge/Made%20With-raylib-blue)](https://www.raylib.com/)
**[data::loss]** is a fast-paced side-scroller platforming game where you navigate a world full of graphical inconsistencies that have a habit of causing physical consequences.
## Documentation
All development documentation has been moved to [`DEVELOPERS.md`](./DEVELOPERS.md).
This game was written purely in [Rust](https://www.rust-lang.org/), and interfaces with bindings to the [`raylib`](https://raylib.com) graphics library. For half the team, this has been their first experience with Rust. The other half have extensive experience in the language.
## The Team

View File

@ -68,8 +68,8 @@
"width": 322,
"height": 64
}
],
"kill": [],
"win": {
"x": 12000,
"y": 0,

Binary file not shown.

After

Width:  |  Height:  |  Size: 520 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 654 KiB

View File

@ -104,6 +104,10 @@ impl Action<Scenes, ScreenError, GameContext> for NextLevelScreen {
Ok(ActionFlag::SwitchState(Scenes::InGameScene))
}
else if self.is_level_select_pressed {
context
.flag_send
.send(Some(ControlFlag::SoundTrigger("button-press".to_string())))
.unwrap();
Ok(ActionFlag::SwitchState(Scenes::LevelSelectScreen))
}else {
Ok(ActionFlag::Continue)