Fix some camera issues by only using gimbal margin to restrict voluntary camera movement, not automatic camera movement

This commit is contained in:
blujai831 2025-03-30 15:39:53 -07:00
parent 5ef367cac2
commit 6fced07e67
No known key found for this signature in database
GPG Key ID: DDC31A0363AA5E66
1 changed files with 1 additions and 1 deletions

View File

@ -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