From c9d43770b86388a9b9246faeed4c9ecac9dd0fd1 Mon Sep 17 00:00:00 2001 From: zefad Date: Thu, 17 Sep 2026 23:23:16 +0200 Subject: [PATCH] inertia --- src/player.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player.rs b/src/player.rs index 435b1be..35b6bc3 100644 --- a/src/player.rs +++ b/src/player.rs @@ -8,7 +8,7 @@ const FALL_SPEED: f32 = 600.0; // Falling speed const DIVE_SPEED: f32 = 1000.0; // Falling speed sped up const HORIZONTAL_SPEED: f32 = 350.0; // Lateral movement speed pub const START_POSITION: Vec3 = Vec3::new(0.0, 0.0, 2.0); // Start position -const RATE: f32 = 13.0; // Inertia rate +const RATE: f32 = 13.0; // Inertia rate // The player #[derive(Component)]