1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-07 19:53:17 +00:00

Merge pull request #24046 from DualMatrix/stop_slope

Fixed using move_and_slide with stop_on_slope stopping too early
This commit is contained in:
Rémi Verschelde
2018-12-14 13:57:19 +01:00
committed by GitHub

View File

@@ -1293,7 +1293,7 @@ Vector2 KinematicBody2D::move_and_slide(const Vector2 &p_linear_velocity, const
if (p_stop_on_slope) {
if (Vector2() == lv_n + p_floor_direction) {
Transform2D gt = get_global_transform();
gt.elements[2] -= collision.travel;
gt.elements[2] -= collision.travel.project(p_floor_direction.tangent());
set_global_transform(gt);
return Vector2();
}