diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-06-23 16:14:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-23 16:14:12 +0200 |
commit | 462127eff08c8ca60a1e4a476153bdb60d63b890 (patch) | |
tree | 53118f6463d0a24ff1173bc112efc403c6b063cb /doc/classes | |
parent | bdd41a836c50ac1e69113a7e284ed2a2f72fc379 (diff) | |
parent | c0fed1d4e886539a533fc77e58bd4c2e1ae17597 (diff) |
Merge pull request #62312 from smix8/navigation_get_maps_4.x
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/NavigationServer2D.xml | 6 | ||||
-rw-r--r-- | doc/classes/NavigationServer3D.xml | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/doc/classes/NavigationServer2D.xml b/doc/classes/NavigationServer2D.xml index 220c12ce7f..187d916fba 100644 --- a/doc/classes/NavigationServer2D.xml +++ b/doc/classes/NavigationServer2D.xml @@ -127,6 +127,12 @@ Destroys the given RID. </description> </method> + <method name="get_maps" qualifiers="const"> + <return type="Array" /> + <description> + Returns all created navigation map [RID]s on the NavigationServer. This returns both 2D and 3D created navigation maps as there is technically no distinction between them. + </description> + </method> <method name="map_create" qualifiers="const"> <return type="RID" /> <description> diff --git a/doc/classes/NavigationServer3D.xml b/doc/classes/NavigationServer3D.xml index d2eef49cfd..e605cf6645 100644 --- a/doc/classes/NavigationServer3D.xml +++ b/doc/classes/NavigationServer3D.xml @@ -127,6 +127,12 @@ Destroys the given RID. </description> </method> + <method name="get_maps" qualifiers="const"> + <return type="Array" /> + <description> + Returns all created navigation map [RID]s on the NavigationServer. This returns both 2D and 3D created navigation maps as there is technically no distinction between them. + </description> + </method> <method name="map_create" qualifiers="const"> <return type="RID" /> <description> |