Prevent unrealistic climbing by modulating ground acceleration by ground plane horizontality

This commit is contained in:
blujai831 2025-04-01 12:25:25 -07:00
parent 91ead7fb5c
commit 846f327a22
No known key found for this signature in database
GPG Key ID: DDC31A0363AA5E66
1 changed files with 7 additions and 1 deletions

View File

@ -611,7 +611,13 @@ func _do_standard_motion(delta: float) -> void:
)
# Then, check which forward acceleration value to use.
var max_accel: float = (
_air_acceleration if use_air_physics else _ground_acceleration
_air_acceleration if use_air_physics else (
# If we're using ground acceleration,
# modulate it by the horizontality of the ground plane.
# This helps prevent unrealistic climbing.
_ground_acceleration *
abs(ground_normal.dot(Vector3.UP))
)
)
# Then, calculate true forward acceleration as follows:
# from standing at rest,