summaryrefslogtreecommitdiff
path: root/doc/classes/NavigationAgent2D.xml
blob: dd3a8aa011b583763a41cf1fab98bf6dac53679f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?xml version="1.0" encoding="UTF-8" ?>
<class name="NavigationAgent2D" inherits="Node" category="Core" version="3.2">
	<brief_description>
		2D Agent used in navigation for collision avoidance.
	</brief_description>
	<description>
		2D Agent that is used in navigation to reach a location while avoiding static and dynamic obstacles. The dynamic obstacles are avoided using RVO collision avoidance. The agent needs navigation data to work correctly. This can be done by having the agent as a child of a [Navigation2D] node, or using [method set_navigation]. [NavigationAgent2D] is physics safe.
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="distance_to_target" qualifiers="const">
			<return type="float">
			</return>
			<description>
				Returns the distance to the target location, using the agent's global position. The user must set the target location with [method set_target_location] in order for this to be accurate.
			</description>
		</method>
		<method name="get_final_location">
			<return type="Vector2">
			</return>
			<description>
				Returns the reachable final location in global coordinates. This can change if the navigation path is altered in any way.
			</description>
		</method>
		<method name="get_nav_path" qualifiers="const">
			<return type="PoolVector2Array">
			</return>
			<description>
				Returns the path from start to finish in global coordinates.
			</description>
		</method>
		<method name="get_nav_path_index" qualifiers="const">
			<return type="int">
			</return>
			<description>
				Returns which index the agent is currently on in the navigation path's [PoolVector2Array].
			</description>
		</method>
		<method name="get_navigation" qualifiers="const">
			<return type="Node">
			</return>
			<description>
				Returns the [Navigation2D] node that the agent is using for its navigation system.
			</description>
		</method>
		<method name="get_next_location">
			<return type="Vector2">
			</return>
			<description>
				Returns a [Vector2] in global coordinates, that can be moved to, making sure that there are no static objects in the way. If the agent does not have a navigation path, it will return the position of the agent's parent.
			</description>
		</method>
		<method name="get_target_location" qualifiers="const">
			<return type="Vector2">
			</return>
			<description>
				Returns the user defined [Vector2] after setting the target location.
			</description>
		</method>
		<method name="is_navigation_finished">
			<return type="bool">
			</return>
			<description>
				Returns true if the navigation path's final location has been reached.
			</description>
		</method>
		<method name="is_target_reachable">
			<return type="bool">
			</return>
			<description>
				Returns true if the target location is reachable. The target location is set using [method set_target_location].
			</description>
		</method>
		<method name="is_target_reached" qualifiers="const">
			<return type="bool">
			</return>
			<description>
				Returns true if the target location is reached. The target location is set using [method set_target_location]. It may not always be possible to reach the target location. It should always be possible to reach the final location though. See [method get_final_location].
			</description>
		</method>
		<method name="set_navigation">
			<return type="void">
			</return>
			<argument index="0" name="navigation" type="Node">
			</argument>
			<description>
				Sets the [Navigation2D] node used by the agent. Useful when you don't want to make the agent a child of a [Navigation2D] node.
			</description>
		</method>
		<method name="set_target_location">
			<return type="void">
			</return>
			<argument index="0" name="location" type="Vector2">
			</argument>
			<description>
				Sets the user desired final location. This will clear the current navigation path.
			</description>
		</method>
		<method name="set_velocity">
			<return type="void">
			</return>
			<argument index="0" name="velocity" type="Vector2">
			</argument>
			<description>
				Sends the passed in velocity to the collision avoidance algorithm. It will adjust the velocity to avoid collisions. Once the adjustment to the velocity is complete, it will emit the [signal velocity_computed] signal.
			</description>
		</method>
	</methods>
	<members>
		<member name="target_desired_distance" type="float" setter="set_target_desired_distance" getter="get_target_desired_distance" default="1.0">
			The distance threshold before a target is considered to be reached. This will allow an agent to not have to hit a point on the path exactly, but in the area.
		</member>
		<member name="radius" type="float" setter="set_radius" getter="get_radius" default="10.0">
			The radius of the agent.
		</member>
		<member name="neighbor_dist" type="float" setter="set_neighbor_dist" getter="get_neighbor_dist" default="500.0">
			The distance to search for other agents.
		</member>
		<member name="max_neighbors" type="int" setter="set_max_neighbors" getter="get_max_neighbors" default="10">
			The maximum number of neighbors for the agent to consider.
		</member>
		<member name="time_horizon" type="float" setter="set_time_horizon" getter="get_time_horizon" default="20.0">
			The minimal amount of time for which this agent's velocities, that are computed with the collision avoidance algorithim, are safe with respect to other agents. The larger the number, the sooner the agent will respond to other agents, but less freedom in choosing its velocities. Must be positive.
		</member>
		<member name="max_speed" type="float" setter="set_max_speed" getter="get_max_speed" default="200.0">
			The maximum speed that an agent can move.
		</member>
		<member name="path_max_distance" type="float" setter="set_path_max_distance" getter="get_path_max_distance" default="3.0">
			The maximum distance the agent is allowed away from the ideal path to the final location. This can happen due to trying to avoid collisions. When the maximum distance is exceded, it recalculates the ideal path.
		</member>
	</members>
	<signals>
		<signal name="navigation_finished">
			<description>
				Notifies when the final location is reached.
			</description>
		</signal>
		<signal name="path_changed">
			<description>
				Notifies when the navigation path changes.
			</description>
		</signal>
		<signal name="target_reached">
			<description>
			        Notifies when the player defined target, set with [method set_target_location], is reached.
			</description>
		</signal>
		<signal name="velocity_computed">
			<argument index="0" name="safe_velocity" type="Vector2">
			</argument>
			<description>
				Notifies when the collision avoidance velocity is calculated. Emitted by [method set_velocity].
			</description>
		</signal>
	</signals>
</class>