mirror of https://github.com/godotengine/godot
Fix double point in Navigation2D
Fixes #10324.
(cherry picked from commit 71a496803c)
This commit is contained in:
parent
e85be2f5df
commit
b64d59f200
|
|
@ -646,7 +646,8 @@ debug path
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
path.push_back(begin_point);
|
if (path[path.size() - 1].distance_to(begin_point) > CMP_EPSILON)
|
||||||
|
path.push_back(begin_point);
|
||||||
|
|
||||||
path.invert();
|
path.invert();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue