diff options
author | smix8 <52464204+smix8@users.noreply.github.com> | 2022-12-06 22:30:34 +0100 |
---|---|---|
committer | smix8 <52464204+smix8@users.noreply.github.com> | 2022-12-06 22:53:18 +0100 |
commit | 860379fc161698234b2757c6f62f8e05fa68ada8 (patch) | |
tree | 1ac77e809267d8b522f71d62d32450fdd407a41e /scene/2d/navigation_agent_2d.h | |
parent | c241f1c52386b21cf2df936ee927740a06970db6 (diff) | |
download | redot-engine-860379fc161698234b2757c6f62f8e05fa68ada8.tar.gz |
Stop NavigationAgents without a target from moving to world origin
Stops NavigationAgents moving to the world origin without anyone telling them to do so.
Diffstat (limited to 'scene/2d/navigation_agent_2d.h')
-rw-r--r-- | scene/2d/navigation_agent_2d.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/2d/navigation_agent_2d.h b/scene/2d/navigation_agent_2d.h index 5abd3c0317..9f2d2e9ea7 100644 --- a/scene/2d/navigation_agent_2d.h +++ b/scene/2d/navigation_agent_2d.h @@ -60,6 +60,7 @@ class NavigationAgent2D : public Node { real_t path_max_distance = 3.0; Vector2 target_location; + bool target_position_submitted = false; Ref<NavigationPathQueryParameters2D> navigation_query; Ref<NavigationPathQueryResult2D> navigation_result; int nav_path_index = 0; |