diff options
author | Ricardo Buring <ricardo.buring@gmail.com> | 2024-04-19 19:40:01 +0200 |
---|---|---|
committer | Ricardo Buring <ricardo.buring@gmail.com> | 2024-04-19 19:40:01 +0200 |
commit | 80c600d86b6fed05fdb35d5dd95267a8a95fe74d (patch) | |
tree | 78651b54d39467bb6a7c2c434b20f192af8c5b73 /scene/3d/physics | |
parent | 4a0160241fd0c1e874e297f6b08676cf0761e5e8 (diff) | |
download | redot-engine-80c600d86b6fed05fdb35d5dd95267a8a95fe74d.tar.gz |
Fix move_and_slide wall slide acceleration (3D)
When travel is high enough, keep the global position resulting from the
move_and_collide call, and set the motion to the remainder from the
move_and_collide call. This ensures travel is taken into account once,
rather than twice.
Diffstat (limited to 'scene/3d/physics')
-rw-r--r-- | scene/3d/physics/character_body_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/physics/character_body_3d.cpp b/scene/3d/physics/character_body_3d.cpp index b13c279234..dda3ea9cca 100644 --- a/scene/3d/physics/character_body_3d.cpp +++ b/scene/3d/physics/character_body_3d.cpp @@ -232,7 +232,7 @@ void CharacterBody3D::_move_and_slide_grounded(double p_delta, bool p_was_on_flo } else { // Travel is too high to be safely canceled, we take it into account. result.travel = result.travel.slide(up_direction); - motion = motion.normalized() * result.travel.length(); + motion = result.remainder; } set_global_transform(gt); // Determines if you are on the ground, and limits the possibility of climbing on the walls because of the approximations. |