Always count true ground as ground regardless of orientation (no wall-jumping off the floor of the level). Do not consider ceilings walls either.

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

View File

@ -410,9 +410,18 @@ func _check_contacts() -> void:
var other := _body_state.get_contact_collider_object(i)
if other is StaticBody3D:
var contact_normal := _body_state.get_contact_local_normal(i)
if acos(contact_normal.dot(ground_normal)) <= _max_slope_angle:
var diff_current_ground := acos(contact_normal.dot(
ground_normal
))
var diff_true_ground := acos(contact_normal.dot(
Vector3.UP if gravity_scale >= 0.0 else Vector3.DOWN
))
if (
diff_current_ground <= _max_slope_angle ||
diff_true_ground <= _max_slope_angle/2.0
):
new_ground += contact_normal
else:
elif diff_current_ground < PI - _max_slope_angle/2.0:
new_wall += contact_normal
# Along the way, handle collisions with other kinds of objects.
elif other is Character: