2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-03-16 23:01:02 +01:00
<class name= "Navigation" inherits= "Spatial" version= "3.5" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2018-04-10 07:20:12 +02:00
Mesh-based navigation and pathfinding node.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2021-12-16 06:15:23 +01:00
Provides navigation and pathfinding within a collection of [NavigationMesh]es. By default, these will be automatically collected from child [NavigationMeshInstance] nodes. In addition to basic pathfinding, this class also assists with aligning navigation agents with the meshes they are navigating on.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2020-10-01 10:34:47 +02:00
<link title= "3D Navmesh Demo" > https://godotengine.org/asset-library/asset/124</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
2021-12-16 06:15:23 +01:00
<method name= "get_closest_point" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Vector3" />
<argument index= "0" name= "to_point" type= "Vector3" />
2017-09-12 22:42:36 +02:00
<description >
2018-04-10 07:20:12 +02:00
Returns the navigation point closest to the point given. Points are in local coordinate space.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-12-16 06:15:23 +01:00
<method name= "get_closest_point_normal" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Vector3" />
<argument index= "0" name= "to_point" type= "Vector3" />
2017-09-12 22:42:36 +02:00
<description >
2018-04-10 07:20:12 +02:00
Returns the surface normal at the navigation point closest to the point given. Useful for rotating a navigation agent according to the navigation mesh it moves on.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-12-16 06:15:23 +01:00
<method name= "get_closest_point_owner" qualifiers= "const" >
<return type= "RID" />
2021-07-30 15:28:05 +02:00
<argument index= "0" name= "to_point" type= "Vector3" />
2017-09-12 22:42:36 +02:00
<description >
2021-12-16 06:15:23 +01:00
Returns the owner of the [NavigationMesh] which contains the navigation point closest to the point given. This is usually a [NavigationMeshInstance].
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-12-16 06:15:23 +01:00
<method name= "get_closest_point_to_segment" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Vector3" />
<argument index= "0" name= "start" type= "Vector3" />
<argument index= "1" name= "end" type= "Vector3" />
<argument index= "2" name= "use_collision" type= "bool" default= "false" />
2017-09-12 22:42:36 +02:00
<description >
2018-04-10 07:20:12 +02:00
Returns the navigation point closest to the given line segment. When enabling [code]use_collision[/code], only considers intersection points between segment and navigation meshes. If multiple intersection points are found, the one closest to the segment start point is returned.
2017-09-12 22:42:36 +02:00
</description>
</method>
2021-12-16 06:15:23 +01:00
<method name= "get_rid" qualifiers= "const" >
<return type= "RID" />
<description >
Returns the object's [RID].
</description>
</method>
<method name= "get_simple_path" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "PoolVector3Array" />
<argument index= "0" name= "start" type= "Vector3" />
<argument index= "1" name= "end" type= "Vector3" />
<argument index= "2" name= "optimize" type= "bool" default= "true" />
2017-09-12 22:42:36 +02:00
<description >
2019-06-11 10:19:16 +02:00
Returns the path between two given points. Points are in local coordinate space. If [code]optimize[/code] is [code]true[/code] (the default), the agent properties associated with each [NavigationMesh] (radius, height, etc.) are considered in the path calculation, otherwise they are ignored.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2022-01-24 23:18:48 +01:00
<member name= "cell_height" type= "float" setter= "set_cell_height" getter= "get_cell_height" default= "0.2" >
The cell height to use for fields.
</member>
2021-12-16 06:15:23 +01:00
<member name= "cell_size" type= "float" setter= "set_cell_size" getter= "get_cell_size" default= "0.3" >
The XZ plane cell size to use for fields.
</member>
<member name= "edge_connection_margin" type= "float" setter= "set_edge_connection_margin" getter= "get_edge_connection_margin" default= "5.0" >
This value is used to detect the near edges to connect compatible regions.
</member>
2019-06-29 12:38:01 +02:00
<member name= "up_vector" type= "Vector3" setter= "set_up_vector" getter= "get_up_vector" default= "Vector3( 0, 1, 0 )" >
2019-06-22 01:04:47 +02:00
Defines which direction is up. By default, this is [code](0, 1, 0)[/code], which is the world's "up" direction.
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
</constants>
</class>