diff options
author | Andrea Catania <info@andreacatania.com> | 2020-03-19 18:05:31 +0100 |
---|---|---|
committer | Andrea Catania <info@andreacatania.com> | 2020-03-19 18:05:31 +0100 |
commit | c7cf624836c50807560b6efa46261e417f9c3295 (patch) | |
tree | 0433cdc874672b28cd6eaaa16a52335e101c8c54 | |
parent | 750d7ea359a25aa49a086f7b906951201b1c819e (diff) |
Fixes navigation path reset
-rw-r--r-- | scene/2d/navigation_agent_2d.cpp | 1 | ||||
-rw-r--r-- | scene/3d/navigation_agent.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/scene/2d/navigation_agent_2d.cpp b/scene/2d/navigation_agent_2d.cpp index f5fe113f29..e345a076ae 100644 --- a/scene/2d/navigation_agent_2d.cpp +++ b/scene/2d/navigation_agent_2d.cpp @@ -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 { diff --git a/scene/3d/navigation_agent.cpp b/scene/3d/navigation_agent.cpp index 728fc947e9..3da1ea66d6 100644 --- a/scene/3d/navigation_agent.cpp +++ b/scene/3d/navigation_agent.cpp @@ -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 { |