Reduce minimum slope considered steep enough to slide down
This commit is contained in:
parent
ef18512dc5
commit
aa5b6db5af
|
@ -580,7 +580,7 @@ func _do_standard_motion(delta: float) -> void:
|
||||||
!volitional_velocity.is_zero_approx() &&
|
!volitional_velocity.is_zero_approx() &&
|
||||||
acos(ground_normal.dot(
|
acos(ground_normal.dot(
|
||||||
Vector3.UP if gravity_scale >= 0.0 else Vector3.DOWN
|
Vector3.UP if gravity_scale >= 0.0 else Vector3.DOWN
|
||||||
)) <= _max_slope_angle
|
)) <= _max_slope_angle/2.0
|
||||||
):
|
):
|
||||||
apply_central_impulse(
|
apply_central_impulse(
|
||||||
-volitional_velocity.normalized() *
|
-volitional_velocity.normalized() *
|
||||||
|
|
Loading…
Reference in New Issue