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
commit 661e5e873b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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();
}