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:
parent
aa5b6db5af
commit
8fc34c825b
|
@ -410,9 +410,18 @@ func _check_contacts() -> void:
|
||||||
var other := _body_state.get_contact_collider_object(i)
|
var other := _body_state.get_contact_collider_object(i)
|
||||||
if other is StaticBody3D:
|
if other is StaticBody3D:
|
||||||
var contact_normal := _body_state.get_contact_local_normal(i)
|
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
|
new_ground += contact_normal
|
||||||
else:
|
elif diff_current_ground < PI - _max_slope_angle/2.0:
|
||||||
new_wall += contact_normal
|
new_wall += contact_normal
|
||||||
# Along the way, handle collisions with other kinds of objects.
|
# Along the way, handle collisions with other kinds of objects.
|
||||||
elif other is Character:
|
elif other is Character:
|
||||||
|
|
Loading…
Reference in New Issue