diff --git a/src/game/kinematic.rs b/src/game/kinematic.rs index b3c6825..511adf6 100644 --- a/src/game/kinematic.rs +++ b/src/game/kinematic.rs @@ -70,13 +70,13 @@ pub struct KinematicProperties { impl Default for KinematicProperties { fn default() -> Self { Self { - ground_speed: 100.0, + ground_speed: 75.0, ground_acceleration: 20.0, ground_friction: 30.0, - air_speed: 100.0, + air_speed: 75.0, air_acceleration: 10.0, air_friction: 10.0, - jump_height: 150.0, + jump_height: 100.0, gravity: Some(1.0), } } @@ -90,7 +90,6 @@ pub struct KinematicInput { } fn kinematic_movement( - time: Res