Merge pull request #71 from Ewpratten/sound

button make sound now :)
This commit is contained in:
Evan Pratten 2021-10-04 09:54:21 -07:00 committed by GitHub
commit b1dc4645b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)