navigation_using_navigationmeshes.rst 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  1. .. _doc_navigation_using_navigationmeshes:
  2. Using navigation meshes
  3. =======================
  4. .. image:: img/nav_meshes.webp
  5. 2D and 3D versions of the navigation mesh are available as
  6. :ref:`NavigationPolygon<class_NavigationPolygon>` and
  7. :ref:`NavigationMesh<class_NavigationMesh>` respectively.
  8. .. note::
  9. A navigation mesh only describes a traversable area for an agent's center position. Any radius values an agent may have are ignored.
  10. If you want pathfinding to account for an agent's (collision) size you need to shrink the navigation mesh accordingly.
  11. Navigation works independently from other engine parts like rendering or physics.
  12. Navigation meshes are the only things considered when doing pathfinding, e.g. visuals and collision shapes for example are completely ignored by the navigation system.
  13. If you need to take other data (like visuals for example) into account when doing pathfinding, you need to adapt your navigation meshes accordingly.
  14. The process of factoring in navigation restrictions in navigation meshes is commonly referred to as navigation mesh baking.
  15. .. figure:: img/nav_mesh_vs_physics.webp
  16. :align: center
  17. :alt: Navigation mesh polygon convex vs concave comparison
  18. A navigation mesh describes a surface that an agent can stand on safely with its center compared to physics shapes that describe outer collision bounds.
  19. If you experience clipping or collision problems while following navigation paths, always remember that you need to tell the navigation system what your intentions are through an appropriate navigation mesh.
  20. By itself the navigation system will never know "this is a tree / rock / wall collision shape or visual mesh" because it only knows that "here I was told I can path safely because it is on a navigation mesh".
  21. .. _doc_navigation_navmesh_baking:
  22. Navigation mesh baking can be done either by using a :ref:`NavigationRegion2D<class_NavigationRegion2D>` or :ref:`NavigationRegion3D<class_NavigationRegion3D>`, or by using the
  23. :ref:`NavigationServer2D<class_NavigationServer2D>` and :ref:`NavigationServer3D<class_NavigationServer3D>` API directly.
  24. .. _doc_navigation_using_navigationmeshes_baking_navigation_mesh_with_navigationregion:
  25. Baking a navigation mesh with a NavigationRegion
  26. ------------------------------------------------
  27. .. figure:: img/nav_mesh_baking_steps.gif
  28. :align: center
  29. :alt: Navigation mesh baking steps
  30. Baking a navigation mesh with agent radius offset from geometry.
  31. The navigation mesh baking is made more accessible with the NavigationRegion node. When baking with a NavigationRegion
  32. node, the individual parsing, baking, and region update steps are all combined into one function.
  33. The nodes are available in 2D and 3D as :ref:`NavigationRegion2D<class_NavigationRegion2D>` and :ref:`NavigationRegion3D<class_NavigationRegion3D>` respectively.
  34. .. tip::
  35. The navigation mesh ``source_geometry_mode`` can be switched to parse specific node group names so nodes that should be baked can be placed anywhere in the scene.
  36. .. tabs::
  37. .. tab:: Baking with a NavigationRegion2D
  38. When a NavigationRegion2D node is selected in the Editor, bake options as well as polygon draw tools appear in the top bar of the Editor.
  39. .. image:: img/nav_region_baking_01.webp
  40. In order for the region to work a :ref:`NavigationPolygon<class_NavigationPolygon>` resource needs to be added.
  41. The properties to parse and bake a navigation mesh are then part of the used resource and can be found in the resource Inspector.
  42. .. image:: img/nav_region_baking_02.webp
  43. The result of the source geometry parsing can be influenced with the following properties.
  44. - The ``parsed_geometry_type`` that filters if visual objects or physics objects or both should be parsed from the :ref:`SceneTree<class_SceneTree>`.
  45. For more details on what objects are parsed and how, see the section about parsing source geometry below.
  46. - The ``collision_mask`` filters which physics collision objects are included when the ``parsed_geometry_type`` includes static colliders.
  47. - The ``source_geometry_mode`` that defines on which node(s) to start the parsing, and how to traverse the :ref:`SceneTree<class_SceneTree>`.
  48. - The ``source_geometry_group_name`` is used when only a certain node group should be parsed. Depends on the selected ``source_geometry_mode``.
  49. With the source geometry added, the result of the baking can be controlled with the following properties.
  50. - The ``cell_size`` sets the rasterization grid size and should match the navigation map size.
  51. - The ``agent_radius`` shrinks the baked navigation mesh to have enough margin for the agent (collision) size.
  52. The NavigationRegion2D baking can also be used at runtime with scripts.
  53. .. tabs::
  54. .. code-tab:: gdscript GDScript
  55. var on_thread: bool = true
  56. bake_navigation_polygon(on_thread)
  57. To quickly test the 2D baking with default settings:
  58. - Add a :ref:`NavigationRegion2D<class_NavigationRegion2D>`.
  59. - Add a :ref:`NavigationPolygon<class_NavigationPolygon>` resource to the NavigationRegion2D.
  60. - Add a :ref:`Polygon2D<class_Polygon2D>` below the NavigationRegion2D.
  61. - Draw 1 NavigationPolygon outline with the selected NavigationRegion2D draw tool.
  62. - Draw 1 Polygon2D outline inside the NavigationPolygon outline with the selected Polygon2D draw tool.
  63. - Hit the Editor bake button and a navigation mesh should appear.
  64. .. image:: img/nav_region_baking_01.webp
  65. .. image:: img/nav_mesh_mini_2d.webp
  66. .. tab:: Baking with a NavigationRegion3D
  67. When a NavigationRegion3D node is selected in the Editor, bake options appear in the top bar of the Editor.
  68. .. image:: img/nav_mesh_bake_toolbar.webp
  69. In order for the region to work a :ref:`NavigationMesh<class_NavigationMesh>` resource needs to be added.
  70. The properties to parse and bake a navigation mesh are then part of the used resource and can be found in the resource Inspector.
  71. .. image:: img/nav_region3d_baking_01.webp
  72. The result of the source geometry parsing can be influenced with the following properties.
  73. - The ``parsed_geometry_type`` that filters if visual objects or physics objects or both should be parsed from the :ref:`SceneTree<class_SceneTree>`.
  74. For more details on what objects are parsed and how, see the section about parsing source geometry below.
  75. - The ``collision_mask`` filters which physics collision objects are included when the ``parsed_geometry_type`` includes static colliders.
  76. - The ``source_geometry_mode`` that defines on which node(s) to start the parsing, and how to traverse the :ref:`SceneTree<class_SceneTree>`.
  77. - The ``source_geometry_group_name`` is used when only a certain node group should be parsed. Depends on the selected ``source_geometry_mode``.
  78. With the source geometry added, the result of the baking can be controlled with the following properties.
  79. - The ``cell_size`` and ``cell_height`` sets the rasterization voxel grid size and should match the navigation map size.
  80. - The ``agent_radius`` shrinks the baked navigation mesh to have enough margin for the agent (collision) size.
  81. - The ``agent_height`` excludes areas from the navigation mesh where the agent is too tall to fit in.
  82. - The ``agent_max_climb`` and ``agent_max_slope`` removes areas where the height difference between neighboring voxels is too large, or where their surface is too steep.
  83. .. warning::
  84. A too small ``cell_size`` or ``cell_height`` can create so many voxels that it has the potential to freeze the game or even crash.
  85. The NavigationRegion3D baking can also be used at runtime with scripts.
  86. .. tabs::
  87. .. code-tab:: gdscript GDScript
  88. var on_thread: bool = true
  89. bake_navigation_mesh(on_thread)
  90. To quickly test the 3D baking with default settings:
  91. - Add a :ref:`NavigationRegion3D<class_NavigationRegion3D>`.
  92. - Add a :ref:`NavigationMesh<class_NavigationMesh>` resource to the NavigationRegion3D.
  93. - Add a :ref:`MeshInstance3D<class_MeshInstance3D>` below the NavigationRegion3D.
  94. - Add a :ref:`PlaneMesh<class_PlaneMesh>` to the MeshInstance3D.
  95. - Hit the Editor bake button and a navigation mesh should appear.
  96. .. image:: img/nav_mesh_bake_toolbar.webp
  97. .. image:: img/nav_mesh_mini_3d.webp
  98. .. _doc_navigation_using_navigationmeshes_baking_navigation_mesh_with_navigationserver:
  99. Baking a navigation mesh with the NavigationServer
  100. --------------------------------------------------
  101. The :ref:`NavigationServer2D<class_NavigationServer2D>` and :ref:`NavigationServer3D<class_NavigationServer3D>` have API functions to call each step of the navigation mesh baking process individually.
  102. - ``parse_source_geometry_data()`` can be used to parse source geometry to a reusable and serializable resource.
  103. - ``bake_from_source_geometry_data()`` can be used to bake a navigation mesh from already parsed data e.g. to avoid runtime performance issues with (redundant) parsing.
  104. - ``bake_from_source_geometry_data_async()`` is the same but bakes the navigation mesh deferred with threads, not blocking the main thread.
  105. Compared to a NavigationRegion, the NavigationServer offers finer control over the navigation mesh baking process.
  106. In turn it is more complex to use but also provides more advanced options.
  107. Some other advantages of the NavigationServer over a NavigationRegion are:
  108. - The server can parse source geometry without baking, e.g. to cache it for later use.
  109. - The server allows selecting the root node at which to start the source geometry parsing manually.
  110. - The server can accept and bake from procedurally generated source geometry data.
  111. - The server can bake multiple navigation meshes in sequence while (re)using the same source geometry data.
  112. To bake navigation meshes with the NavigationServer, source geometry is required.
  113. Source geometry is geometry data that should be considered in a navigation mesh baking process.
  114. Both navigation meshes for 2D and 3D are created by baking them from source geometry.
  115. 2D and 3D versions of the source geometry resources are available as
  116. :ref:`NavigationMeshSourceGeometryData2D<class_NavigationMeshSourceGeometryData2D>` and
  117. :ref:`NavigationMeshSourceGeometryData3D<class_NavigationMeshSourceGeometryData3D>` respectively.
  118. Source geometry can be geometry parsed from visual meshes, from physics collision,
  119. or procedural created arrays of data, like outlines (2D) and triangle faces (3D).
  120. For convenience, source geometry is commonly parsed directly from node setups in the SceneTree.
  121. For runtime navigation mesh (re)bakes, be aware that the geometry parsing always happens on the main thread.
  122. .. note::
  123. The SceneTree is not thread-safe. Parsing source geometry from the SceneTree can only be done on the main thread.
  124. .. warning::
  125. The data from visual meshes and polygons needs to be received from the GPU, stalling the RenderingServer in the process.
  126. For runtime (re)baking prefer using physics shapes as parsed source geometry.
  127. Source geometry is stored inside resources so the created geometry can be reused for multiple bakes.
  128. E.g. baking multiple navigation meshes for different agent sizes from the same source geometry.
  129. This also allows to save source geometry to disk so it can be loaded later, e.g. to avoid the overhead of parsing it again at runtime.
  130. The geometry data should be in general kept very simple. As many edges as are required but as few as possible.
  131. Especially in 2D duplicated and nested geometry should be avoided as it forces polygon hole calculation that can result in flipped polygons.
  132. An example for nested geometry would be a smaller StaticBody2D shape placed completely inside the bounds of another StaticBody2D shape.
  133. Baking navigation mesh chunks for large worlds
  134. ----------------------------------------------
  135. .. figure:: img/navmesh_chunk_build.gif
  136. :align: center
  137. :alt: Building navigation mesh chunks
  138. Building and updating individual navigation mesh chunks at runtime.
  139. .. seealso::
  140. You can see the navigation mesh chunk baking in action in the
  141. `Navigation Mesh Chunks 2D <https://github.com/godotengine/godot-demo-projects/tree/master/2d/navigation_mesh_chunks>`__
  142. and `Navigation Mesh Chunks 3D <https://github.com/godotengine/godot-demo-projects/tree/master/3d/navigation_mesh_chunks>`__
  143. demo projects.
  144. To avoid misaligned edges between different region chunks the navigation meshes have two important properties
  145. for the navigation mesh baking process. The baking bound and the border size.
  146. Together they can be used to ensure perfectly aligned edges between region chunks.
  147. .. figure:: img/navmesh_bound_bordersize.webp
  148. :align: center
  149. :alt: Navigation mesh chunk with bake bound and border size
  150. Navigation mesh chunk baked with bake bound or baked with additional border size.
  151. The baking bound, which is an axis-aligned :ref:`Rect2<class_Rect2>` for 2D and :ref:`AABB<class_AABB>` for 3D,
  152. limits the used source geometry by discarding all the geometry that is outside of the bounds.
  153. The :ref:`NavigationPolygon<class_NavigationPolygon>` properties ``baking_rect`` and ``baking_rect_offset``
  154. can be used to create and place the 2D baking bound.
  155. The :ref:`NavigationMesh<class_NavigationMesh>` properties ``filter_baking_aabb`` and ``filter_baking_aabb_offset``
  156. can be used to create and place the 3D baking bound.
  157. With only the baking bound set another problem still exists. The resulting navigation mesh will
  158. inevitably be affected by necessary offsets like the ``agent_radius`` which makes the edges not align properly.
  159. .. figure:: img/navmesh_chunk_gaps.webp
  160. :align: center
  161. :alt: Navigation mesh chunks with gaps
  162. Navigation mesh chunks with noticeable gaps due to baked agent radius offset.
  163. This is where the ``border_size`` property for navigation mesh comes in. The border size is an inward margin
  164. from the baking bound. The important characteristic of the border size is that it is unaffected by most
  165. offsets and postprocessing like the ``agent_radius``.
  166. Instead of discarding source geometry, the border size discards parts of the final surface of the baked navigation mesh.
  167. If the baking bound is large enough the border size can remove the problematic surface
  168. parts so that only the intended chunk size is left.
  169. .. figure:: img/navmesh_chunks.webp
  170. :align: center
  171. :alt: Navigation mesh chunks without gaps
  172. Navigation mesh chunks with aligned edges and without gaps.
  173. .. note::
  174. The baking bounds need to be large enough to include a reasonable amount of source geometry from all the neighboring chunks.
  175. .. warning::
  176. In 3D the functionality of the border size is limited to the xz-axis.
  177. Navigation mesh baking common problems
  178. --------------------------------------
  179. There are some common user problems and important caveats to consider when creating or baking navigation meshes.
  180. - Navigation mesh baking creates frame rate problems at runtime
  181. The navigation mesh baking is by default done on a background thread, so as long as the platform supports threads, the actual baking is
  182. rarely the source of any performance issues (assuming a reasonably sized and complex geometry for runtime rebakes).
  183. The common source for performance issues at runtime is the parsing step for source geometry that involves nodes and the SceneTree.
  184. The SceneTree is not thread-safe so all the nodes need to be parsed on the main thread.
  185. Some nodes with a lot of data can be very heavy and slow to parse at runtime, e.g. a TileMap has one or more polygons for every single used cell and TileMapLayer to parse.
  186. Nodes that hold meshes need to request the data from the RenderingServer stalling the rendering in the process.
  187. To improve performance, use more optimized shapes, e.g. collision shapes over detailed visual meshes, and merge and simplify as much geometry as possible upfront.
  188. If nothing helps, don't parse the SceneTree and add the source geometry procedural with scripts. If only pure data arrays are used as source geometry, the entire baking process can be done on a background thread.
  189. - Navigation mesh creates unintended holes in 2D.
  190. The navigation mesh baking in 2D is done by doing polygon clipping operations based on outline paths.
  191. Polygons with "holes" are a necessary evil to create more complex 2D polygons but can become unpredictable for users with many complex shapes involved.
  192. To avoid any unexpected problems with polygon hole calculations, avoid nesting any outlines inside other outlines of the same type (traversable / obstruction).
  193. This includes the parsed shapes from nodes. E.g. placing a smaller StaticBody2D shape inside a larger StaticBody2D shape can result in the resulting polygon being flipped.
  194. - Navigation mesh appears inside geometry in 3D.
  195. The navigation mesh baking in 3D has no concept of "inside". The voxel cells used to rasterize the geometry are either occupied or not.
  196. Remove the geometry that is on the ground inside the other geometry. If that is not possible, add smaller "dummy" geometry inside with as few triangles as possible so the cells
  197. are occupied with something.
  198. A :ref:`NavigationObstacle3D<class_NavigationObstacle3D>` shape set to bake with navigation mesh can be used to discard geometry as well.
  199. .. figure:: img/nav_mesh_obstacles_discard.webp
  200. :align: center
  201. :alt: NavigationObstacle3D unwanted geometry discard
  202. A NavigationObstacle3D shape can be used to discard unwanted navigation mesh parts.
  203. Navigation mesh script templates
  204. --------------------------------
  205. The following script uses the NavigationServer to parse source geometry from the scene tree, bakes a navigation mesh, and updates a navigation region with the updated navigation mesh.
  206. .. tabs::
  207. .. code-tab:: gdscript 2D GDScript
  208. extends Node2D
  209. var navigation_mesh: NavigationPolygon
  210. var source_geometry : NavigationMeshSourceGeometryData2D
  211. var callback_parsing : Callable
  212. var callback_baking : Callable
  213. var region_rid: RID
  214. func _ready() -> void:
  215. navigation_mesh = NavigationPolygon.new()
  216. navigation_mesh.agent_radius = 10.0
  217. source_geometry = NavigationMeshSourceGeometryData2D.new()
  218. callback_parsing = on_parsing_done
  219. callback_baking = on_baking_done
  220. region_rid = NavigationServer2D.region_create()
  221. # Enable the region and set it to the default navigation map.
  222. NavigationServer2D.region_set_enabled(region_rid, true)
  223. NavigationServer2D.region_set_map(region_rid, get_world_2d().get_navigation_map())
  224. # Some mega-nodes like TileMap are often not ready on the first frame.
  225. # Also the parsing needs to happen on the main-thread.
  226. # So do a deferred call to avoid common parsing issues.
  227. parse_source_geometry.call_deferred()
  228. func parse_source_geometry() -> void:
  229. source_geometry.clear()
  230. var root_node: Node2D = self
  231. # Parse the obstruction outlines from all child nodes of the root node by default.
  232. NavigationServer2D.parse_source_geometry_data(
  233. navigation_mesh,
  234. source_geometry,
  235. root_node,
  236. callback_parsing
  237. )
  238. func on_parsing_done() -> void:
  239. # If we did not parse a TileMap with navigation mesh cells we may now only
  240. # have obstruction outlines so add at least one traversable outline
  241. # so the obstructions outlines have something to "cut" into.
  242. source_geometry.add_traversable_outline(PackedVector2Array([
  243. Vector2(0.0, 0.0),
  244. Vector2(500.0, 0.0),
  245. Vector2(500.0, 500.0),
  246. Vector2(0.0, 500.0)
  247. ]))
  248. # Bake the navigation mesh on a thread with the source geometry data.
  249. NavigationServer2D.bake_from_source_geometry_data_async(
  250. navigation_mesh,
  251. source_geometry,
  252. callback_baking
  253. )
  254. func on_baking_done() -> void:
  255. # Update the region with the updated navigation mesh.
  256. NavigationServer2D.region_set_navigation_polygon(region_rid, navigation_mesh)
  257. .. code-tab:: gdscript 3D GDScript
  258. extends Node3D
  259. var navigation_mesh: NavigationMesh
  260. var source_geometry : NavigationMeshSourceGeometryData3D
  261. var callback_parsing : Callable
  262. var callback_baking : Callable
  263. var region_rid: RID
  264. func _ready() -> void:
  265. navigation_mesh = NavigationMesh.new()
  266. navigation_mesh.agent_radius = 0.5
  267. source_geometry = NavigationMeshSourceGeometryData3D.new()
  268. callback_parsing = on_parsing_done
  269. callback_baking = on_baking_done
  270. region_rid = NavigationServer3D.region_create()
  271. # Enable the region and set it to the default navigation map.
  272. NavigationServer3D.region_set_enabled(region_rid, true)
  273. NavigationServer3D.region_set_map(region_rid, get_world_3d().get_navigation_map())
  274. # Some mega-nodes like GridMap are often not ready on the first frame.
  275. # Also the parsing needs to happen on the main-thread.
  276. # So do a deferred call to avoid common parsing issues.
  277. parse_source_geometry.call_deferred()
  278. func parse_source_geometry() -> void:
  279. source_geometry.clear()
  280. var root_node: Node3D = self
  281. # Parse the geometry from all mesh child nodes of the root node by default.
  282. NavigationServer3D.parse_source_geometry_data(
  283. navigation_mesh,
  284. source_geometry,
  285. root_node,
  286. callback_parsing
  287. )
  288. func on_parsing_done() -> void:
  289. # Bake the navigation mesh on a thread with the source geometry data.
  290. NavigationServer3D.bake_from_source_geometry_data_async(
  291. navigation_mesh,
  292. source_geometry,
  293. callback_baking
  294. )
  295. func on_baking_done() -> void:
  296. # Update the region with the updated navigation mesh.
  297. NavigationServer3D.region_set_navigation_mesh(region_rid, navigation_mesh)
  298. The following script uses the NavigationServer to update a navigation region with procedurally generated navigation mesh data.
  299. .. tabs::
  300. .. code-tab:: gdscript 2D GDScript
  301. extends Node2D
  302. var navigation_mesh: NavigationPolygon
  303. var region_rid: RID
  304. func _ready() -> void:
  305. navigation_mesh = NavigationPolygon.new()
  306. region_rid = NavigationServer2D.region_create()
  307. # Enable the region and set it to the default navigation map.
  308. NavigationServer2D.region_set_enabled(region_rid, true)
  309. NavigationServer2D.region_set_map(region_rid, get_world_2d().get_navigation_map())
  310. # Add vertices for a convex polygon.
  311. navigation_mesh.vertices = PackedVector2Array([
  312. Vector2(0.0, 0.0),
  313. Vector2(100.0, 0.0),
  314. Vector2(100.0, 100.0),
  315. Vector2(0.0, 100.0)
  316. ])
  317. # Add indices for the polygon.
  318. navigation_mesh.add_polygon(
  319. PackedInt32Array([0, 1, 2, 3])
  320. )
  321. NavigationServer2D.region_set_navigation_polygon(region_rid, navigation_mesh)
  322. .. code-tab:: gdscript 3D GDScript
  323. extends Node3D
  324. var navigation_mesh: NavigationMesh
  325. var region_rid: RID
  326. func _ready() -> void:
  327. navigation_mesh = NavigationMesh.new()
  328. region_rid = NavigationServer3D.region_create()
  329. # Enable the region and set it to the default navigation map.
  330. NavigationServer3D.region_set_enabled(region_rid, true)
  331. NavigationServer3D.region_set_map(region_rid, get_world_3d().get_navigation_map())
  332. # Add vertices for a convex polygon.
  333. navigation_mesh.vertices = PackedVector3Array([
  334. Vector3(-1.0, 0.0, 1.0),
  335. Vector3(1.0, 0.0, 1.0),
  336. Vector3(1.0, 0.0, -1.0),
  337. Vector3(-1.0, 0.0, -1.0),
  338. ])
  339. # Add indices for the polygon.
  340. navigation_mesh.add_polygon(
  341. PackedInt32Array([0, 1, 2, 3])
  342. )
  343. NavigationServer3D.region_set_navigation_mesh(region_rid, navigation_mesh)