diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-03-20 09:34:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-20 09:34:53 +0100 |
commit | 87404bda8a48eafd98630a7bbe4eb80e9c9969fb (patch) | |
tree | e8dec3434286fb09893a6c1a0c0bb58f2960a0b8 /scene/3d/navigation_agent.cpp | |
parent | 63f77efdc6a1e178d356f33509cebb33b0e2c8e2 (diff) | |
parent | c7cf624836c50807560b6efa46261e417f9c3295 (diff) |
Merge pull request #37169 from AndreaCatania/AndreaCatania-patch-2
Fixes navigation path reset
Diffstat (limited to 'scene/3d/navigation_agent.cpp')
-rw-r--r-- | scene/3d/navigation_agent.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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 { |