Fix some camera issues by only using gimbal margin to restrict voluntary camera movement, not automatic camera movement
This commit is contained in:
parent
5ef367cac2
commit
6fced07e67
|
@ -135,7 +135,7 @@ func _follow_target(
|
||||||
global_position, desired_position,
|
global_position, desired_position,
|
||||||
1.0 - (1.0 - follow_lerp_speed)**delta
|
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(
|
var desired_basis := Basis.looking_at(
|
||||||
target_offset - leveling,
|
target_offset - leveling,
|
||||||
target.global_basis.y
|
target.global_basis.y
|
||||||
|
|
Loading…
Reference in New Issue