diff options
author | Josh Jones <kilauea.jones@gmail.com> | 2022-10-05 17:24:45 -0600 |
---|---|---|
committer | Josh Jones <kilauea.jones@gmail.com> | 2022-12-17 16:33:41 -0800 |
commit | 5d8ba2b2d11fc6c4debdf21fa91bddefaa6f3d6d (patch) | |
tree | 4b71044253a7818e2782b0b513159143c40a47d6 /doc/classes/NavigationPathQueryResult3D.xml | |
parent | 0bb94df247a0a0c22333e2e99744fc3fd184601a (diff) |
Add support for emitting a signal when entering a NavLink
Diffstat (limited to 'doc/classes/NavigationPathQueryResult3D.xml')
-rw-r--r-- | doc/classes/NavigationPathQueryResult3D.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/classes/NavigationPathQueryResult3D.xml b/doc/classes/NavigationPathQueryResult3D.xml index 6c553bf36b..03d41cb230 100644 --- a/doc/classes/NavigationPathQueryResult3D.xml +++ b/doc/classes/NavigationPathQueryResult3D.xml @@ -20,5 +20,22 @@ <member name="path" type="PackedVector3Array" setter="set_path" getter="get_path" default="PackedVector3Array()"> The resulting path array from the navigation query. All path array positions are in global coordinates. Without customized query parameters this is the same path as returned by [method NavigationServer3D.map_get_path]. </member> + <member name="path_owner_ids" type="PackedInt64Array" setter="set_path_owner_ids" getter="get_path_owner_ids" default="PackedInt64Array()"> + The [code]ObjectID[/code]s of the [Object]s which manage the regions and links each point of the path goes through. + </member> + <member name="path_rids" type="RID[]" setter="set_path_rids" getter="get_path_rids" default="[]"> + The [RID]s of the regions and links that each point of the path goes through. + </member> + <member name="path_types" type="PackedInt32Array" setter="set_path_types" getter="get_path_types" default="PackedInt32Array()"> + The type of navigation primitive (region or link) that each point of the path goes through. + </member> </members> + <constants> + <constant name="PATH_SEGMENT_TYPE_REGION" value="0" enum="PathSegmentType"> + This segment of the path goes through a region. + </constant> + <constant name="PATH_SEGMENT_TYPE_LINK" value="1" enum="PathSegmentType"> + This segment of the path goes through a link. + </constant> + </constants> </class> |