navigation_using_navigationagents.rst 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. .. _doc_navigation_using_navigationagents:
  2. Using NavigationAgents
  3. ======================
  4. NavigationsAgents are helper nodes that combine functionality
  5. for pathfinding, path following and agent avoidance for a Node2D/3D inheriting parent node.
  6. They facilitate common calls to the NavigationServer API on
  7. behalf of the parent actor node in a more convenient manner for beginners.
  8. 2D and 3D version of NavigationAgents are available as
  9. :ref:`NavigationAgent2D<class_NavigationAgent2D>` and
  10. :ref:`NavigationAgent3D<class_NavigationAgent3D>` respectively.
  11. New NavigationAgent nodes will automatically join the default navigation map on the :ref:`World2D<class_World2D>`/:ref:`World3D<class_World3D>`.
  12. NavigationsAgent nodes are optional and not a hard requirement to use the navigation system.
  13. Their entire functionality can be replaced with scripts and direct calls to the NavigationServer API.
  14. NavigationAgent Pathfinding
  15. ---------------------------
  16. NavigationAgents query a new navigation path on their current navigation map when their ``target_position`` is set with a global position.
  17. The result of the pathfinding can be influenced with the following properties.
  18. - The ``navigation_layers`` bitmask can be used to limit the navigation meshes that the agent can use.
  19. - The ``pathfinding_algorithm`` controls how the pathfinding travels through the navigation mesh polygons in the path search.
  20. - The ``path_postprocessing`` sets if or how the raw path corridor found by the pathfinding is altered before it is returned.
  21. - The ``path_metadata_flags`` enable the collection of additional path point meta data returned by the path.
  22. - The ``simplify_path`` and ``simplify_epsilon`` properties can be used to remove less critical points from the path.
  23. .. warning::
  24. Disabling path meta flags will disable related signal emissions on the agent.
  25. NavigationAgent Pathfollowing
  26. -----------------------------
  27. After a ``target_position`` has been set for the agent, the next position to follow in the path
  28. can be retrieved with the ``get_next_path_position()`` function.
  29. Once the next path position is received move the parent actor node of the agent
  30. towards this path position with your own movement code.
  31. .. note::
  32. The navigation system never moves the parent node of a NavigationAgent.
  33. The movement is entirely in the hands of users and their custom scripts.
  34. NavigationAgents have their own internal logic to proceed with the current path and call for updates.
  35. The ``get_next_path_position()`` function is responsible for updating many of the agent's internal states and properties.
  36. The function should be repeatedly called *once* every ``physics_process`` until ``is_navigation_finished()`` tells that the path is finished.
  37. The function should not be called after the target position or path end has been reached
  38. as it can make the agent jitter in place due to the repeated path updates.
  39. Always check very early in script with ``is_navigation_finished()`` if the path is already finished.
  40. The following properties influence the path following behavior.
  41. - The ``path_desired_distance`` defines the distance at which the agent advances its internal path index to the next path position.
  42. - The ``target_desired_distance`` defines the distance at which the agent considers the target position to be reached and the path at its end.
  43. - The ``path_max_distance`` defines when an agent requests a new path cause it was moved too far away from the current path point segment.
  44. The important updates are all triggered with the ``get_next_path_position()`` function
  45. when called in ``_physics_process()``.
  46. NavigationAgents can be used with ``process`` but are still limited to a single update that happens in ``physics_process``.
  47. Script examples for various nodes commonly used with NavigationAgents can be found further below.
  48. Pathfollowing common problems
  49. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  50. There are some common user problems and important caveats to consider when writing agent movement scripts.
  51. - The path is returned empty
  52. If an agent queries a path before the navigation map synchronisation, e.g. in a ``_ready()`` function, the path might return empty. In this case the ``get_next_path_position()`` function will return the same position as the agent parent node and the agent will consider the path end reached. This is fixed by making a deferred call or using a callback e.g. waiting for the navigation map changed signal.
  53. - The agent is stuck dancing between two positions
  54. This is usually caused by very frequent path updates every single frame, either deliberate or by accident (e.g. max path distance set too short). The pathfinding needs to find the closest position that are valid on navigation mesh. If a new path is requested every single frame the first path positions might end up switching constantly in front and behind the agent's current position, causing it to dance between the two positions.
  55. - The agent is backtracking sometimes
  56. If an agent moves very fast it might overshoot the path_desired_distance check without ever advancing the path index. This can lead to the agent backtracking to the path point now behind it until it passes the distance check to increase the path index. Increase the desired distances accordingly for your agent speed and update rate usually fixes this as well as a more balanced navigation mesh polygon layout with not too many polygon edges cramped together in small spaces.
  57. - The agent is sometimes looking backwards for a frame
  58. Same as with stuck dancing agents between two positions, this is usually caused by very frequent path updates every single frame. Depending on your navigation mesh layout, and especially when an agent is directly placed over a navigation mesh edge or edge connection, expect path positions to be sometimes slightly "behind" your actors current orientation. This happens due to precision issues and can not always be avoided. This is usually only a visible problem if actors are instantly rotated to face the current path position.
  59. NavigationAgent Avoidance
  60. -------------------------
  61. This section explains how to use the navigation avoidance specific to NavigationAgents.
  62. In order for NavigationAgents to use the avoidance feature the ``enable_avoidance`` property must be set to ``true``.
  63. .. image:: img/agent_avoidance_enabled.png
  64. The ``velocity_computed`` signal of the NavigationAgent node must be connected to receive the safe velocity calculation result.
  65. .. image:: img/agent_safevelocity_signal.png
  66. Set the ``velocity`` of the NavigationAgent node in ``_physics_process()`` to update the agent with the current velocity of the agent's parent node.
  67. While avoidance is enabled on the agent the ``safe_velocity`` vector will be received with the velocity_computed signal every physics frame.
  68. This velocity vector should be used to move the NavigationAgent's parent node in order to avoidance collision with other avoidance using agents or avoidance obstacles.
  69. .. note::
  70. Only other agents on the same map that are registered for avoidance themself will be considered in the avoidance calculation.
  71. The following NavigationAgent properties are relevant for avoidance:
  72. - The property ``height`` is available in 3D only. The height together with the current global y-axis position of the agent determines the vertical placement of the agent in the avoidance simulation. Agents using the 2D avoidance will automatically ignore other agents or obstacles that are below or above them.
  73. - The property ``radius`` controls the size of the avoidance circle, or in case of 3D sphere, around the agent. This area describes the agents body and not the avoidance maneuver distance.
  74. - The property ``neighbor_distance`` controls the search radius of the agent when searching for other agents that should be avoided. A lower value reduces processing cost.
  75. - The property ``max_neighbors`` controls how many other agents are considered in the avoidance calculation if they all have overlapping radius.
  76. A lower value reduces processing cost but a too low value may result in agents ignoring the avoidance.
  77. - The properties ``time_horizon_agents`` and ``time_horizon_obstacles`` control the avoidance prediction time for other agents or obstacles in seconds. When agents calculate their safe velocities they choose velocities that can be kept for this amount of seconds without colliding with another avoidance object. The prediction time should be kept as low as possible as agents will slow down their velocities to avoid collision in that timeframe.
  78. - The property ``max_speed`` controls the maximum velocity allowed for the agents avoidance calculation.
  79. If the agents parents moves faster than this value the avoidance ``safe_velocity`` might not be accurate enough to avoid collision.
  80. - The property ``use_3d_avoidance`` switches the agent between the 2D avoidance (xz axis) and the 3D avoidance (xyz axis) on the next update.
  81. Note that 2D avoidance and 3D avoidance run in separate avoidance simulations so agents split between them do not affect each other.
  82. - The properties ``avoidance_layers`` and ``avoidance_mask`` are bitmasks similar to e.g. physics layers. Agents will only avoid other avoidance objects that are on an avoidance layer that matches at least one of their own avoidance mask bits.
  83. - The ``avoidance_priority`` makes agents with a higher priority ignore agents with a lower priority. This can be used to give certain agents more importance in the avoidance simulation, e.g. important npcs characters, without constantly changing their entire avoidance layers or mask.
  84. Avoidance exists in its own space and has no information from navigation meshes or physics collision.
  85. Behind the scene avoidance agents are just circles with different radius on a flat 2D plane or spheres in an otherwise empty 3D space.
  86. NavigationObstacles can be used to add some environment constrains to the avoidance simulation, see :ref:`doc_navigation_using_navigationobstacles`.
  87. .. note::
  88. Avoidance does not affect the pathfinding. It should be seen as an additional option for constantly moving objects that cannot be (re)baked to a navigation mesh efficiently in order to move around them.
  89. .. note::
  90. RVO avoidance makes implicit assumptions about natural agent behavior. E.g. that agents move on reasonable passing sides that can be assigned when they encounter each other.
  91. This means that very clinical avoidance test scenarios will commonly fail. E.g. agents moved directly against each other with perfect opposite velocities will fail because the agents can not get their passing sides assigned.
  92. Using the NavigationAgent ``enable_avoidance`` property is the preferred option
  93. to toggle avoidance. The following code snippets can be used to
  94. toggle avoidance on agents, create or delete avoidance callbacks or switch avoidance modes.
  95. .. tabs::
  96. .. code-tab:: gdscript 2D GDScript
  97. extends NavigationAgent2D
  98. func _ready() -> void:
  99. var agent: RID = get_rid()
  100. # Enable avoidance
  101. NavigationServer2D.agent_set_avoidance_enabled(agent, true)
  102. # Create avoidance callback
  103. NavigationServer2D.agent_set_avoidance_callback(agent, Callable(self, "_avoidance_done"))
  104. # Disable avoidance
  105. NavigationServer2D.agent_set_avoidance_enabled(agent, false)
  106. # Delete avoidance callback
  107. NavigationServer2D.agent_set_avoidance_callback(agent, Callable())
  108. .. code-tab:: gdscript 3D GDScript
  109. extends NavigationAgent3D
  110. func _ready() -> void:
  111. var agent: RID = get_rid()
  112. # Enable avoidance
  113. NavigationServer3D.agent_set_avoidance_enabled(agent, true)
  114. # Create avoidance callback
  115. NavigationServer3D.agent_set_avoidance_callback(agent, Callable(self, "_avoidance_done"))
  116. # Switch to 3D avoidance
  117. NavigationServer3D.agent_set_use_3d_avoidance(agent, true)
  118. # Disable avoidance
  119. NavigationServer3D.agent_set_avoidance_enabled(agent, false)
  120. # Delete avoidance callback
  121. NavigationServer3D.agent_set_avoidance_callback(agent, Callable())
  122. # Switch to 2D avoidance
  123. NavigationServer3D.agent_set_use_3d_avoidance(agent, false)
  124. NavigationAgent Script Templates
  125. --------------------------------
  126. The following sections provides script templates for nodes commonly used with NavigationAgents.
  127. .. tabs::
  128. .. tab:: 2D GDScript
  129. .. tabs::
  130. .. code-tab:: gdscript Node2D
  131. extends Node2D
  132. @export var movement_speed: float = 4.0
  133. @onready var navigation_agent: NavigationAgent2D = get_node("NavigationAgent2D")
  134. var movement_delta: float
  135. func _ready() -> void:
  136. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  137. func set_movement_target(movement_target: Vector2):
  138. navigation_agent.set_target_position(movement_target)
  139. func _physics_process(delta):
  140. # Do not query when the map has never synchronized and is empty.
  141. if NavigationServer2D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  142. return
  143. if navigation_agent.is_navigation_finished():
  144. return
  145. movement_delta = movement_speed * delta
  146. var next_path_position: Vector2 = navigation_agent.get_next_path_position()
  147. var new_velocity: Vector2 = global_position.direction_to(next_path_position) * movement_delta
  148. if navigation_agent.avoidance_enabled:
  149. navigation_agent.set_velocity(new_velocity)
  150. else:
  151. _on_velocity_computed(new_velocity)
  152. func _on_velocity_computed(safe_velocity: Vector2) -> void:
  153. global_position = global_position.move_toward(global_position + safe_velocity, movement_delta)
  154. .. code-tab:: gdscript CharacterBody2D
  155. extends CharacterBody2D
  156. @export var movement_speed: float = 4.0
  157. @onready var navigation_agent: NavigationAgent2D = get_node("NavigationAgent2D")
  158. func _ready() -> void:
  159. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  160. func set_movement_target(movement_target: Vector2):
  161. navigation_agent.set_target_position(movement_target)
  162. func _physics_process(delta):
  163. # Do not query when the map has never synchronized and is empty.
  164. if NavigationServer2D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  165. return
  166. if navigation_agent.is_navigation_finished():
  167. return
  168. var next_path_position: Vector2 = navigation_agent.get_next_path_position()
  169. var new_velocity: Vector2 = global_position.direction_to(next_path_position) * movement_speed
  170. if navigation_agent.avoidance_enabled:
  171. navigation_agent.set_velocity(new_velocity)
  172. else:
  173. _on_velocity_computed(new_velocity)
  174. func _on_velocity_computed(safe_velocity: Vector2):
  175. velocity = safe_velocity
  176. move_and_slide()
  177. .. code-tab:: gdscript RigidBody2D
  178. extends RigidBody2D
  179. @export var movement_speed: float = 4.0
  180. @onready var navigation_agent: NavigationAgent2D = get_node("NavigationAgent2D")
  181. func _ready() -> void:
  182. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  183. func set_movement_target(movement_target: Vector2):
  184. navigation_agent.set_target_position(movement_target)
  185. func _physics_process(delta):
  186. # Do not query when the map has never synchronized and is empty.
  187. if NavigationServer2D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  188. return
  189. if navigation_agent.is_navigation_finished():
  190. return
  191. var next_path_position: Vector2 = navigation_agent.get_next_path_position()
  192. var new_velocity: Vector2 = global_position.direction_to(next_path_position) * movement_speed
  193. if navigation_agent.avoidance_enabled:
  194. navigation_agent.set_velocity(new_velocity)
  195. else:
  196. _on_velocity_computed(new_velocity)
  197. func _on_velocity_computed(safe_velocity: Vector2):
  198. linear_velocity = safe_velocity
  199. .. tab:: 3D GDScript
  200. .. tabs::
  201. .. code-tab:: gdscript Node3D
  202. extends Node3D
  203. @export var movement_speed: float = 4.0
  204. @onready var navigation_agent: NavigationAgent3D = get_node("NavigationAgent3D")
  205. var movement_delta: float
  206. func _ready() -> void:
  207. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  208. func set_movement_target(movement_target: Vector3):
  209. navigation_agent.set_target_position(movement_target)
  210. func _physics_process(delta):
  211. # Do not query when the map has never synchronized and is empty.
  212. if NavigationServer3D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  213. return
  214. if navigation_agent.is_navigation_finished():
  215. return
  216. movement_delta = movement_speed * delta
  217. var next_path_position: Vector3 = navigation_agent.get_next_path_position()
  218. var new_velocity: Vector3 = global_position.direction_to(next_path_position) * movement_delta
  219. if navigation_agent.avoidance_enabled:
  220. navigation_agent.set_velocity(new_velocity)
  221. else:
  222. _on_velocity_computed(new_velocity)
  223. func _on_velocity_computed(safe_velocity: Vector3) -> void:
  224. global_position = global_position.move_toward(global_position + safe_velocity, movement_delta)
  225. .. code-tab:: gdscript CharacterBody3D
  226. extends CharacterBody3D
  227. @export var movement_speed: float = 4.0
  228. @onready var navigation_agent: NavigationAgent3D = get_node("NavigationAgent3D")
  229. func _ready() -> void:
  230. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  231. func set_movement_target(movement_target: Vector3):
  232. navigation_agent.set_target_position(movement_target)
  233. func _physics_process(delta):
  234. # Do not query when the map has never synchronized and is empty.
  235. if NavigationServer3D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  236. return
  237. if navigation_agent.is_navigation_finished():
  238. return
  239. var next_path_position: Vector3 = navigation_agent.get_next_path_position()
  240. var new_velocity: Vector3 = global_position.direction_to(next_path_position) * movement_speed
  241. if navigation_agent.avoidance_enabled:
  242. navigation_agent.set_velocity(new_velocity)
  243. else:
  244. _on_velocity_computed(new_velocity)
  245. func _on_velocity_computed(safe_velocity: Vector3):
  246. velocity = safe_velocity
  247. move_and_slide()
  248. .. code-tab:: gdscript RigidBody3D
  249. extends RigidBody3D
  250. @export var movement_speed: float = 4.0
  251. @onready var navigation_agent: NavigationAgent3D = get_node("NavigationAgent3D")
  252. func _ready() -> void:
  253. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  254. func set_movement_target(movement_target: Vector3):
  255. navigation_agent.set_target_position(movement_target)
  256. func _physics_process(delta):
  257. # Do not query when the map has never synchronized and is empty.
  258. if NavigationServer3D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  259. return
  260. if navigation_agent.is_navigation_finished():
  261. return
  262. var next_path_position: Vector3 = navigation_agent.get_next_path_position()
  263. var new_velocity: Vector3 = global_position.direction_to(next_path_position) * movement_speed
  264. if navigation_agent.avoidance_enabled:
  265. navigation_agent.set_velocity(new_velocity)
  266. else:
  267. _on_velocity_computed(new_velocity)
  268. func _on_velocity_computed(safe_velocity: Vector3):
  269. linear_velocity = safe_velocity