Переглянути джерело

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

Fixes navigation path reset
Rémi Verschelde 5 роки тому
батько
коміт
87404bda8a
2 змінених файлів з 2 додано та 0 видалено
  1. 1 0
      scene/2d/navigation_agent_2d.cpp
  2. 1 0
      scene/3d/navigation_agent.cpp

+ 1 - 0
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 {

+ 1 - 0
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 {