From f221aef192f1d74bc49464beb06317799c00d1dc Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Fri, 1 Oct 2021 19:27:21 -0400 Subject: [PATCH] un-fuck physics --- game/src/scenes/ingame_scene/update.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/src/scenes/ingame_scene/update.rs b/game/src/scenes/ingame_scene/update.rs index 3e2edf1..278da4b 100644 --- a/game/src/scenes/ingame_scene/update.rs +++ b/game/src/scenes/ingame_scene/update.rs @@ -16,7 +16,7 @@ impl FrameUpdate for InGameScreen { let is_pause = raylib.is_key_down(KeyboardKey::KEY_ESCAPE); if is_jump { - self.player.apply_force(Vector2::new(0.0, 1.0)); + self.player.apply_force(Vector2::new(0.0, -1.0)); } } }