Browse Source

Merge pull request #6553 from smix8/navregion_doc_update_4.x

Clarify NavigationServer created regions
Max Hilbrunner 2 years ago
parent
commit
b8dcd3f18f
1 changed files with 4 additions and 2 deletions
  1. 4 2
      tutorials/navigation/navigation_using_navigationregions.rst

+ 4 - 2
tutorials/navigation/navigation_using_navigationregions.rst

@@ -34,9 +34,9 @@ Regions can be enabled / disabled and if disabled will not contribute to future
 Creating new navigation regions
 Creating new navigation regions
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 
-New navigation regions will automatically register to the default world navigation map.
+New NavigationRegion nodes will automatically register to the default world navigation map for their 2D/3D dimension.
 
 
-The region RID can be obtained from NavigationRegion Nodes with ``get_region_rid()``.
+The region RID can then be obtained from NavigationRegion Nodes with ``get_region_rid()``.
 
 
 .. tabs::
 .. tabs::
  .. code-tab:: gdscript GDScript
  .. code-tab:: gdscript GDScript
@@ -47,6 +47,8 @@ The region RID can be obtained from NavigationRegion Nodes with ``get_region_rid
 
 
 New regions can also be created with the NavigationServer API and added to any existing map.
 New regions can also be created with the NavigationServer API and added to any existing map.
 
 
+If regions are created with the NavigationServer API directly they need to be assigned a navigation map manually.
+
 .. tabs::
 .. tabs::
  .. code-tab:: gdscript GDScript
  .. code-tab:: gdscript GDScript