From 6fced07e678be9cc2948ea60182c4d78c2527b30 Mon Sep 17 00:00:00 2001 From: blujai831 Date: Sun, 30 Mar 2025 15:39:53 -0700 Subject: [PATCH] Fix some camera issues by only using gimbal margin to restrict voluntary camera movement, not automatic camera movement --- vfx/gameplay_camera.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vfx/gameplay_camera.gd b/vfx/gameplay_camera.gd index acafd26..3bdddf4 100644 --- a/vfx/gameplay_camera.gd +++ b/vfx/gameplay_camera.gd @@ -135,7 +135,7 @@ func _follow_target( global_position, desired_position, 1.0 - (1.0 - follow_lerp_speed)**delta )) - if abs(_gimbal_check()) <= lerp(gimbal_margin, 1.0, 0.5): + if !is_zero_approx(1.0 - abs(_gimbal_check())): var desired_basis := Basis.looking_at( target_offset - leveling, target.global_basis.y