Reduce minimum slope considered steep enough to slide down

This commit is contained in:
blujai831 2025-03-30 16:28:50 -07:00
parent ef18512dc5
commit aa5b6db5af
No known key found for this signature in database
GPG Key ID: DDC31A0363AA5E66
1 changed files with 1 additions and 1 deletions

View File

@ -580,7 +580,7 @@ func _do_standard_motion(delta: float) -> void:
!volitional_velocity.is_zero_approx() &&
acos(ground_normal.dot(
Vector3.UP if gravity_scale >= 0.0 else Vector3.DOWN
)) <= _max_slope_angle
)) <= _max_slope_angle/2.0
):
apply_central_impulse(
-volitional_velocity.normalized() *