1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Merge pull request #37169 from AndreaCatania/AndreaCatania-patch-2

Fixes navigation path reset
This commit is contained in:
Rémi Verschelde
2020-03-20 09:34:53 +01:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -215,6 +215,7 @@ void NavigationAgent2D::set_target_location(Vector2 p_location) {
navigation_path.clear();
target_reached = false;
navigation_finished = false;
update_frame_id = 0;
}
Vector2 NavigationAgent2D::get_target_location() const {

View File

@@ -234,6 +234,7 @@ void NavigationAgent::set_target_location(Vector3 p_location) {
navigation_path.clear();
target_reached = false;
navigation_finished = false;
update_frame_id = 0;
}
Vector3 NavigationAgent::get_target_location() const {