diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-05-16 13:47:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 13:47:20 +0200 |
commit | 9ba0fac1ba090946afcdbcee5fb0107a4c688e59 (patch) | |
tree | 415b807efb0b29b6d7f586fc2dc96934faeaa928 /doc | |
parent | 95da5436dcc8a7a4df290923b760ad0a910baaed (diff) | |
parent | 001d89223f1377717d2b3d5ec453ff8dd3604182 (diff) |
Merge pull request #61038 from smix8/navigation_obstacle_rid_config_warn_4.x
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/NavigationObstacle2D.xml | 8 | ||||
-rw-r--r-- | doc/classes/NavigationObstacle3D.xml | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/doc/classes/NavigationObstacle2D.xml b/doc/classes/NavigationObstacle2D.xml index 2540c56258..f3690ce8a7 100644 --- a/doc/classes/NavigationObstacle2D.xml +++ b/doc/classes/NavigationObstacle2D.xml @@ -8,6 +8,14 @@ </description> <tutorials> </tutorials> + <methods> + <method name="get_rid" qualifiers="const"> + <return type="RID" /> + <description> + Returns the [RID] of this obstacle on the [NavigationServer2D]. + </description> + </method> + </methods> <members> <member name="estimate_radius" type="bool" setter="set_estimate_radius" getter="is_radius_estimated" default="true"> Enables radius estimation algorithm which uses parent's collision shapes to determine the obstacle radius. diff --git a/doc/classes/NavigationObstacle3D.xml b/doc/classes/NavigationObstacle3D.xml index f9489db5f1..e6ea70b91a 100644 --- a/doc/classes/NavigationObstacle3D.xml +++ b/doc/classes/NavigationObstacle3D.xml @@ -8,6 +8,14 @@ </description> <tutorials> </tutorials> + <methods> + <method name="get_rid" qualifiers="const"> + <return type="RID" /> + <description> + Returns the [RID] of this obstacle on the [NavigationServer3D]. + </description> + </method> + </methods> <members> <member name="estimate_radius" type="bool" setter="set_estimate_radius" getter="is_radius_estimated" default="true"> Enables radius estimation algorithm which uses parent's collision shapes to determine the obstacle radius. |