navigation_using_navigationagents.rst 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757
  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 distance properties influence the path following behavior.
  41. - At ``path_desired_distance`` from the next path position, the agent advances its internal path index to the subsequent next path position.
  42. - At ``target_desired_distance`` from the target path position, the agent considers the target position to be reached and the path at its end.
  43. - At ``path_max_distance`` from the ideal path to the next path position, the agent requests a new path because it was pushed too far off.
  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 non-playable 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:: csharp 2D C#
  109. using Godot;
  110. public partial class MyNavigationAgent2D : NavigationAgent2D
  111. {
  112. public override void _Ready()
  113. {
  114. Rid agent = GetRid();
  115. // Enable avoidance
  116. NavigationServer2D.AgentSetAvoidanceEnabled(agent, true);
  117. // Create avoidance callback
  118. NavigationServer2D.AgentSetAvoidanceCallback(agent, Callable.From(AvoidanceDone));
  119. // Disable avoidance
  120. NavigationServer2D.AgentSetAvoidanceEnabled(agent, false);
  121. //Delete avoidance callback
  122. NavigationServer2D.AgentSetAvoidanceCallback(agent, default);
  123. }
  124. private void AvoidanceDone() { }
  125. }
  126. .. code-tab:: gdscript 3D GDScript
  127. extends NavigationAgent3D
  128. func _ready() -> void:
  129. var agent: RID = get_rid()
  130. # Enable avoidance
  131. NavigationServer3D.agent_set_avoidance_enabled(agent, true)
  132. # Create avoidance callback
  133. NavigationServer3D.agent_set_avoidance_callback(agent, Callable(self, "_avoidance_done"))
  134. # Switch to 3D avoidance
  135. NavigationServer3D.agent_set_use_3d_avoidance(agent, true)
  136. # Disable avoidance
  137. NavigationServer3D.agent_set_avoidance_enabled(agent, false)
  138. # Delete avoidance callback
  139. NavigationServer3D.agent_set_avoidance_callback(agent, Callable())
  140. # Switch to 2D avoidance
  141. NavigationServer3D.agent_set_use_3d_avoidance(agent, false)
  142. .. code-tab:: csharp 3D C#
  143. using Godot;
  144. public partial class MyNavigationAgent3D : NavigationAgent3D
  145. {
  146. public override void _Ready()
  147. {
  148. Rid agent = GetRid();
  149. // Enable avoidance
  150. NavigationServer3D.AgentSetAvoidanceEnabled(agent, true);
  151. // Create avoidance callback
  152. NavigationServer3D.AgentSetAvoidanceCallback(agent, Callable.From(AvoidanceDone));
  153. // Switch to 3D avoidance
  154. NavigationServer3D.AgentSetUse3DAvoidance(agent, true);
  155. // Disable avoidance
  156. NavigationServer3D.AgentSetAvoidanceEnabled(agent, false);
  157. //Delete avoidance callback
  158. NavigationServer3D.AgentSetAvoidanceCallback(agent, default);
  159. // Switch to 2D avoidance
  160. NavigationServer3D.AgentSetUse3DAvoidance(agent, false);
  161. }
  162. private void AvoidanceDone() { }
  163. }
  164. NavigationAgent Script Templates
  165. --------------------------------
  166. The following sections provides script templates for nodes commonly used with NavigationAgents.
  167. .. tabs::
  168. .. tab:: 2D GDScript
  169. .. tabs::
  170. .. code-tab:: gdscript Node2D
  171. extends Node2D
  172. @export var movement_speed: float = 4.0
  173. @onready var navigation_agent: NavigationAgent2D = get_node("NavigationAgent2D")
  174. var movement_delta: float
  175. func _ready() -> void:
  176. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  177. func set_movement_target(movement_target: Vector2):
  178. navigation_agent.set_target_position(movement_target)
  179. func _physics_process(delta):
  180. # Do not query when the map has never synchronized and is empty.
  181. if NavigationServer2D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  182. return
  183. if navigation_agent.is_navigation_finished():
  184. return
  185. movement_delta = movement_speed * delta
  186. var next_path_position: Vector2 = navigation_agent.get_next_path_position()
  187. var new_velocity: Vector2 = global_position.direction_to(next_path_position) * movement_delta
  188. if navigation_agent.avoidance_enabled:
  189. navigation_agent.set_velocity(new_velocity)
  190. else:
  191. _on_velocity_computed(new_velocity)
  192. func _on_velocity_computed(safe_velocity: Vector2) -> void:
  193. global_position = global_position.move_toward(global_position + safe_velocity, movement_delta)
  194. .. code-tab:: gdscript CharacterBody2D
  195. extends CharacterBody2D
  196. @export var movement_speed: float = 4.0
  197. @onready var navigation_agent: NavigationAgent2D = get_node("NavigationAgent2D")
  198. func _ready() -> void:
  199. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  200. func set_movement_target(movement_target: Vector2):
  201. navigation_agent.set_target_position(movement_target)
  202. func _physics_process(delta):
  203. # Do not query when the map has never synchronized and is empty.
  204. if NavigationServer2D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  205. return
  206. if navigation_agent.is_navigation_finished():
  207. return
  208. var next_path_position: Vector2 = navigation_agent.get_next_path_position()
  209. var new_velocity: Vector2 = global_position.direction_to(next_path_position) * movement_speed
  210. if navigation_agent.avoidance_enabled:
  211. navigation_agent.set_velocity(new_velocity)
  212. else:
  213. _on_velocity_computed(new_velocity)
  214. func _on_velocity_computed(safe_velocity: Vector2):
  215. velocity = safe_velocity
  216. move_and_slide()
  217. .. code-tab:: gdscript RigidBody2D
  218. extends RigidBody2D
  219. @export var movement_speed: float = 4.0
  220. @onready var navigation_agent: NavigationAgent2D = get_node("NavigationAgent2D")
  221. func _ready() -> void:
  222. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  223. func set_movement_target(movement_target: Vector2):
  224. navigation_agent.set_target_position(movement_target)
  225. func _physics_process(delta):
  226. # Do not query when the map has never synchronized and is empty.
  227. if NavigationServer2D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  228. return
  229. if navigation_agent.is_navigation_finished():
  230. return
  231. var next_path_position: Vector2 = navigation_agent.get_next_path_position()
  232. var new_velocity: Vector2 = global_position.direction_to(next_path_position) * movement_speed
  233. if navigation_agent.avoidance_enabled:
  234. navigation_agent.set_velocity(new_velocity)
  235. else:
  236. _on_velocity_computed(new_velocity)
  237. func _on_velocity_computed(safe_velocity: Vector2):
  238. linear_velocity = safe_velocity
  239. .. tab:: 2D C#
  240. .. tabs::
  241. .. code-tab:: csharp Node2D
  242. using Godot;
  243. public partial class MyNode2D : Node2D
  244. {
  245. [Export]
  246. public float MovementSpeed { get; set; } = 4.0f;
  247. NavigationAgent2D _navigationAgent;
  248. private float _movementDelta;
  249. public override void _Ready()
  250. {
  251. _navigationAgent = GetNode<NavigationAgent2D>("NavigationAgent2D");
  252. _navigationAgent.VelocityComputed += OnVelocityComputed;
  253. }
  254. private void SetMovementTarget(Vector2 movementTarget)
  255. {
  256. _navigationAgent.TargetPosition = movementTarget;
  257. }
  258. public override void _PhysicsProcess(double delta)
  259. {
  260. // Do not query when the map has never synchronized and is empty.
  261. if (NavigationServer2D.MapGetIterationId(_navigationAgent.GetNavigationMap()) == 0)
  262. {
  263. return;
  264. }
  265. if (_navigationAgent.IsNavigationFinished())
  266. {
  267. return;
  268. }
  269. _movementDelta = MovementSpeed * (float)delta;
  270. Vector2 nextPathPosition = _navigationAgent.GetNextPathPosition();
  271. Vector2 newVelocity = GlobalPosition.DirectionTo(nextPathPosition) * _movementDelta;
  272. if (_navigationAgent.AvoidanceEnabled)
  273. {
  274. _navigationAgent.Velocity = newVelocity;
  275. }
  276. else
  277. {
  278. OnVelocityComputed(newVelocity);
  279. }
  280. }
  281. private void OnVelocityComputed(Vector2 safeVelocity)
  282. {
  283. GlobalPosition = GlobalPosition.MoveToward(GlobalPosition + safeVelocity, _movementDelta);
  284. }
  285. }
  286. .. code-tab:: csharp CharacterBody2D
  287. using Godot;
  288. public partial class MyCharacterBody2D : CharacterBody2D
  289. {
  290. [Export]
  291. public float MovementSpeed { get; set; } = 4.0f;
  292. NavigationAgent2D _navigationAgent;
  293. public override void _Ready()
  294. {
  295. _navigationAgent = GetNode<NavigationAgent2D>("NavigationAgent2D");
  296. _navigationAgent.VelocityComputed += OnVelocityComputed;
  297. }
  298. private void SetMovementTarget(Vector2 movementTarget)
  299. {
  300. _navigationAgent.TargetPosition = movementTarget;
  301. }
  302. public override void _PhysicsProcess(double delta)
  303. {
  304. // Do not query when the map has never synchronized and is empty.
  305. if (NavigationServer2D.MapGetIterationId(_navigationAgent.GetNavigationMap()) == 0)
  306. {
  307. return;
  308. }
  309. if (_navigationAgent.IsNavigationFinished())
  310. {
  311. return;
  312. }
  313. Vector2 nextPathPosition = _navigationAgent.GetNextPathPosition();
  314. Vector2 newVelocity = GlobalPosition.DirectionTo(nextPathPosition) * MovementSpeed;
  315. if (_navigationAgent.AvoidanceEnabled)
  316. {
  317. _navigationAgent.Velocity = newVelocity;
  318. }
  319. else
  320. {
  321. OnVelocityComputed(newVelocity);
  322. }
  323. }
  324. private void OnVelocityComputed(Vector2 safeVelocity)
  325. {
  326. Velocity = safeVelocity;
  327. MoveAndSlide();
  328. }
  329. }
  330. .. code-tab:: csharp RigidBody2D
  331. using Godot;
  332. public partial class MyRigidBody2D : RigidBody2D
  333. {
  334. [Export]
  335. public float MovementSpeed { get; set; } = 4.0f;
  336. NavigationAgent2D _navigationAgent;
  337. public override void _Ready()
  338. {
  339. _navigationAgent = GetNode<NavigationAgent2D>("NavigationAgent2D");
  340. _navigationAgent.VelocityComputed += OnVelocityComputed;
  341. }
  342. private void SetMovementTarget(Vector2 movementTarget)
  343. {
  344. _navigationAgent.TargetPosition = movementTarget;
  345. }
  346. public override void _PhysicsProcess(double delta)
  347. {
  348. // Do not query when the map has never synchronized and is empty.
  349. if (NavigationServer2D.MapGetIterationId(_navigationAgent.GetNavigationMap()) == 0)
  350. {
  351. return;
  352. }
  353. if (_navigationAgent.IsNavigationFinished())
  354. {
  355. return;
  356. }
  357. Vector2 nextPathPosition = _navigationAgent.GetNextPathPosition();
  358. Vector2 newVelocity = GlobalPosition.DirectionTo(nextPathPosition) * MovementSpeed;
  359. if (_navigationAgent.AvoidanceEnabled)
  360. {
  361. _navigationAgent.Velocity = newVelocity;
  362. }
  363. else
  364. {
  365. OnVelocityComputed(newVelocity);
  366. }
  367. }
  368. private void OnVelocityComputed(Vector2 safeVelocity)
  369. {
  370. LinearVelocity = safeVelocity;
  371. }
  372. }
  373. .. tab:: 3D GDScript
  374. .. tabs::
  375. .. code-tab:: gdscript Node3D
  376. extends Node3D
  377. @export var movement_speed: float = 4.0
  378. @onready var navigation_agent: NavigationAgent3D = get_node("NavigationAgent3D")
  379. var movement_delta: float
  380. func _ready() -> void:
  381. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  382. func set_movement_target(movement_target: Vector3):
  383. navigation_agent.set_target_position(movement_target)
  384. func _physics_process(delta):
  385. # Do not query when the map has never synchronized and is empty.
  386. if NavigationServer3D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  387. return
  388. if navigation_agent.is_navigation_finished():
  389. return
  390. movement_delta = movement_speed * delta
  391. var next_path_position: Vector3 = navigation_agent.get_next_path_position()
  392. var new_velocity: Vector3 = global_position.direction_to(next_path_position) * movement_delta
  393. if navigation_agent.avoidance_enabled:
  394. navigation_agent.set_velocity(new_velocity)
  395. else:
  396. _on_velocity_computed(new_velocity)
  397. func _on_velocity_computed(safe_velocity: Vector3) -> void:
  398. global_position = global_position.move_toward(global_position + safe_velocity, movement_delta)
  399. .. code-tab:: gdscript CharacterBody3D
  400. extends CharacterBody3D
  401. @export var movement_speed: float = 4.0
  402. @onready var navigation_agent: NavigationAgent3D = get_node("NavigationAgent3D")
  403. func _ready() -> void:
  404. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  405. func set_movement_target(movement_target: Vector3):
  406. navigation_agent.set_target_position(movement_target)
  407. func _physics_process(delta):
  408. # Do not query when the map has never synchronized and is empty.
  409. if NavigationServer3D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  410. return
  411. if navigation_agent.is_navigation_finished():
  412. return
  413. var next_path_position: Vector3 = navigation_agent.get_next_path_position()
  414. var new_velocity: Vector3 = global_position.direction_to(next_path_position) * movement_speed
  415. if navigation_agent.avoidance_enabled:
  416. navigation_agent.set_velocity(new_velocity)
  417. else:
  418. _on_velocity_computed(new_velocity)
  419. func _on_velocity_computed(safe_velocity: Vector3):
  420. velocity = safe_velocity
  421. move_and_slide()
  422. .. code-tab:: gdscript RigidBody3D
  423. extends RigidBody3D
  424. @export var movement_speed: float = 4.0
  425. @onready var navigation_agent: NavigationAgent3D = get_node("NavigationAgent3D")
  426. func _ready() -> void:
  427. navigation_agent.velocity_computed.connect(Callable(_on_velocity_computed))
  428. func set_movement_target(movement_target: Vector3):
  429. navigation_agent.set_target_position(movement_target)
  430. func _physics_process(delta):
  431. # Do not query when the map has never synchronized and is empty.
  432. if NavigationServer3D.map_get_iteration_id(navigation_agent.get_navigation_map()) == 0:
  433. return
  434. if navigation_agent.is_navigation_finished():
  435. return
  436. var next_path_position: Vector3 = navigation_agent.get_next_path_position()
  437. var new_velocity: Vector3 = global_position.direction_to(next_path_position) * movement_speed
  438. if navigation_agent.avoidance_enabled:
  439. navigation_agent.set_velocity(new_velocity)
  440. else:
  441. _on_velocity_computed(new_velocity)
  442. func _on_velocity_computed(safe_velocity: Vector3):
  443. linear_velocity = safe_velocity
  444. .. tab:: 3D C#
  445. .. tabs::
  446. .. code-tab:: csharp Node3D
  447. using Godot;
  448. public partial class MyNode3D : Node3D
  449. {
  450. [Export]
  451. public float MovementSpeed { get; set; } = 4.0f;
  452. NavigationAgent3D _navigationAgent;
  453. private float _movementDelta;
  454. public override void _Ready()
  455. {
  456. _navigationAgent = GetNode<NavigationAgent3D>("NavigationAgent3D");
  457. _navigationAgent.VelocityComputed += OnVelocityComputed;
  458. }
  459. private void SetMovementTarget(Vector3 movementTarget)
  460. {
  461. _navigationAgent.TargetPosition = movementTarget;
  462. }
  463. public override void _PhysicsProcess(double delta)
  464. {
  465. // Do not query when the map has never synchronized and is empty.
  466. if (NavigationServer3D.MapGetIterationId(_navigationAgent.GetNavigationMap()) == 0)
  467. {
  468. return;
  469. }
  470. if (_navigationAgent.IsNavigationFinished())
  471. {
  472. return;
  473. }
  474. _movementDelta = MovementSpeed * (float)delta;
  475. Vector3 nextPathPosition = _navigationAgent.GetNextPathPosition();
  476. Vector3 newVelocity = GlobalPosition.DirectionTo(nextPathPosition) * _movementDelta;
  477. if (_navigationAgent.AvoidanceEnabled)
  478. {
  479. _navigationAgent.Velocity = newVelocity;
  480. }
  481. else
  482. {
  483. OnVelocityComputed(newVelocity);
  484. }
  485. }
  486. private void OnVelocityComputed(Vector3 safeVelocity)
  487. {
  488. GlobalPosition = GlobalPosition.MoveToward(GlobalPosition + safeVelocity, _movementDelta);
  489. }
  490. }
  491. .. code-tab:: csharp CharacterBody3D
  492. using Godot;
  493. public partial class MyCharacterBody3D : CharacterBody3D
  494. {
  495. [Export]
  496. public float MovementSpeed { get; set; } = 4.0f;
  497. NavigationAgent3D _navigationAgent;
  498. public override void _Ready()
  499. {
  500. _navigationAgent = GetNode<NavigationAgent3D>("NavigationAgent3D");
  501. _navigationAgent.VelocityComputed += OnVelocityComputed;
  502. }
  503. private void SetMovementTarget(Vector3 movementTarget)
  504. {
  505. _navigationAgent.TargetPosition = movementTarget;
  506. }
  507. public override void _PhysicsProcess(double delta)
  508. {
  509. // Do not query when the map has never synchronized and is empty.
  510. if (NavigationServer3D.MapGetIterationId(_navigationAgent.GetNavigationMap()) == 0)
  511. {
  512. return;
  513. }
  514. if (_navigationAgent.IsNavigationFinished())
  515. {
  516. return;
  517. }
  518. Vector3 nextPathPosition = _navigationAgent.GetNextPathPosition();
  519. Vector3 newVelocity = GlobalPosition.DirectionTo(nextPathPosition) * MovementSpeed;
  520. if (_navigationAgent.AvoidanceEnabled)
  521. {
  522. _navigationAgent.Velocity = newVelocity;
  523. }
  524. else
  525. {
  526. OnVelocityComputed(newVelocity);
  527. }
  528. }
  529. private void OnVelocityComputed(Vector3 safeVelocity)
  530. {
  531. Velocity = safeVelocity;
  532. MoveAndSlide();
  533. }
  534. }
  535. .. code-tab:: csharp RigidBody3D
  536. using Godot;
  537. public partial class MyRigidBody3D : RigidBody3D
  538. {
  539. [Export]
  540. public float MovementSpeed { get; set; } = 4.0f;
  541. NavigationAgent3D _navigationAgent;
  542. public override void _Ready()
  543. {
  544. _navigationAgent = GetNode<NavigationAgent3D>("NavigationAgent3D");
  545. _navigationAgent.VelocityComputed += OnVelocityComputed;
  546. }
  547. private void SetMovementTarget(Vector3 movementTarget)
  548. {
  549. _navigationAgent.TargetPosition = movementTarget;
  550. }
  551. public override void _PhysicsProcess(double delta)
  552. {
  553. // Do not query when the map has never synchronized and is empty.
  554. if (NavigationServer3D.MapGetIterationId(_navigationAgent.GetNavigationMap()) == 0)
  555. {
  556. return;
  557. }
  558. if (_navigationAgent.IsNavigationFinished())
  559. {
  560. return;
  561. }
  562. Vector3 nextPathPosition = _navigationAgent.GetNextPathPosition();
  563. Vector3 newVelocity = GlobalPosition.DirectionTo(nextPathPosition) * MovementSpeed;
  564. if (_navigationAgent.AvoidanceEnabled)
  565. {
  566. _navigationAgent.Velocity = newVelocity;
  567. }
  568. else
  569. {
  570. OnVelocityComputed(newVelocity);
  571. }
  572. }
  573. private void OnVelocityComputed(Vector3 safeVelocity)
  574. {
  575. LinearVelocity = safeVelocity;
  576. }
  577. }