From 71d43767bd75ac60b2730ca306c4b2b129170d10 Mon Sep 17 00:00:00 2001 From: PROMETHIA-27 <42193387+PROMETHIA-27@users.noreply.github.com> Date: Thu, 19 Jun 2025 03:38:25 -0400 Subject: [PATCH] tune flying controls (#44) --- src/control/controller_common.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/control/controller_common.rs b/src/control/controller_common.rs index def5210..1fcc37a 100644 --- a/src/control/controller_common.rs +++ b/src/control/controller_common.rs @@ -188,7 +188,7 @@ const RUNNING_MOVEMENT_CONFIG: MovementConfig = MovementConfig { const FLYING_MOVEMENT_CONFIG: MovementConfig = MovementConfig { movement: CharacterMovement { target_speed: 20.0, - acceleration: 50.0, + acceleration: 300.0, }, step: SteppingConfig { max_height: 0.25, @@ -201,7 +201,7 @@ const FLYING_MOVEMENT_CONFIG: MovementConfig = MovementConfig { }, gravity: CharacterGravity(Vec3::ZERO), friction: CharacterFriction(0.0), - drag: CharacterDrag(1.0), + drag: CharacterDrag(10.0), settings: ControllerSettings { jump_force: 0.0, deceleration_factor: 0.0,