diff options
author | smix8 <52464204+smix8@users.noreply.github.com> | 2023-10-21 19:04:41 +0200 |
---|---|---|
committer | smix8 <52464204+smix8@users.noreply.github.com> | 2023-10-21 19:04:41 +0200 |
commit | b7be45279d826bfd2f9b618ead39e8efae47479d (patch) | |
tree | e9362049d2444e79f7d495c7347fdd8cf32a2efa /doc/classes/NavigationAgent3D.xml | |
parent | f71f4b80e32f6e98a4cd3cb1c06071223297e8fc (diff) | |
download | redot-engine-b7be45279d826bfd2f9b618ead39e8efae47479d.tar.gz |
Solve race condition between AThousandShips and Akien
Solves race condition between AThousandShips and Akien.
Diffstat (limited to 'doc/classes/NavigationAgent3D.xml')
-rw-r--r-- | doc/classes/NavigationAgent3D.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/NavigationAgent3D.xml b/doc/classes/NavigationAgent3D.xml index 24325b4a01..ec9f679307 100644 --- a/doc/classes/NavigationAgent3D.xml +++ b/doc/classes/NavigationAgent3D.xml @@ -168,7 +168,7 @@ The height of the avoidance agent. Agents will ignore other agents or obstacles that are above or below their current position + height in 2D avoidance. Does nothing in 3D avoidance which uses radius spheres alone. </member> <member name="keep_y_velocity" type="bool" setter="set_keep_y_velocity" getter="get_keep_y_velocity" default="true"> - If [code]true[/code] and the agent uses 2D avoidance it will remember the set y-axis velocity and reapply it after the avoidance step. While 2D avoidance has no y-axis and simulates on a flat plane this setting can help mitigate the most obvious clipping on uneven 3D geometry. + If [code]true[/code], and the agent uses 2D avoidance, it will remember the set y-axis velocity and reapply it after the avoidance step. While 2D avoidance has no y-axis and simulates on a flat plane this setting can help mitigate the most obvious clipping on uneven 3D geometry. </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. |