From c39d7aa9dfd0f022c879695f8e4a0892507cc4cf Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Sun, 14 Mar 2021 00:39:44 +0000 Subject: [PATCH] Made level flight work --- common/src/states/utils.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/common/src/states/utils.rs b/common/src/states/utils.rs index 1b74af1a55..019e9b21fa 100644 --- a/common/src/states/utils.rs +++ b/common/src/states/utils.rs @@ -321,11 +321,7 @@ fn swim_move(data: &JoinData, update: &mut StateUpdate, efficiency: f32, depth: /// Updates components to move entity as if it's flying fn fly_move(data: &JoinData, update: &mut StateUpdate, efficiency: f32) { // Update velocity (counteract gravity with lift) - // TODO: Do this better - // A loss factor is needed to counteract the very slight deviation in gravity - // due to precision issues - const LOSS_FACTOR: f32 = 0.995; - update.vel.0 += Vec3::unit_z() * data.dt.0 * GRAVITY * LOSS_FACTOR + update.vel.0 += Vec3::unit_z() * data.dt.0 * GRAVITY + Vec3::new( data.inputs.move_dir.x, data.inputs.move_dir.y,