From 8fc34c825b410723a5f30480bc7a8d74ef8dc1c3 Mon Sep 17 00:00:00 2001 From: blujai831 Date: Sun, 30 Mar 2025 16:39:03 -0700 Subject: [PATCH] Always count true ground as ground regardless of orientation (no wall-jumping off the floor of the level). Do not consider ceilings walls either. --- characters/base/character.gd | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/characters/base/character.gd b/characters/base/character.gd index 96a5a0b..0f61a5f 100644 --- a/characters/base/character.gd +++ b/characters/base/character.gd @@ -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: