diff options
author | Brandtware <brandtware@gmail.com> | 2024-03-24 19:50:59 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-04 14:55:59 +0200 |
commit | f8c0208e96ecbee5d2b7506d9d71e697d392bc7d (patch) | |
tree | f45cb5bfbbc961cecc7faec4c889958a2b41aceb /doc/classes | |
parent | 7a42afbba050822a66ea5b4c620f6db1b98c49af (diff) | |
download | redot-engine-f8c0208e96ecbee5d2b7506d9d71e697d392bc7d.tar.gz |
Fix wrong return type mention in AStarGrid2D docs
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/AStar2D.xml | 2 | ||||
-rw-r--r-- | doc/classes/AStar3D.xml | 2 | ||||
-rw-r--r-- | doc/classes/AStarGrid2D.xml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/classes/AStar2D.xml b/doc/classes/AStar2D.xml index c877b3de78..2ea6aa15bd 100644 --- a/doc/classes/AStar2D.xml +++ b/doc/classes/AStar2D.xml @@ -234,7 +234,7 @@ <description> Returns an array with the points that are in the path found by AStar2D between the given points. The array is ordered from the starting point to the ending point of the path. If there is no valid path to the target, and [param allow_partial_path] is [code]true[/code], returns a path to the point closest to the target that can be reached. - [b]Note:[/b] This method is not thread-safe. If called from a [Thread], it will return an empty [PackedVector2Array] and will print an error message. + [b]Note:[/b] This method is not thread-safe. If called from a [Thread], it will return an empty array and will print an error message. </description> </method> <method name="get_point_position" qualifiers="const"> diff --git a/doc/classes/AStar3D.xml b/doc/classes/AStar3D.xml index c8a80a9012..281f4edcc1 100644 --- a/doc/classes/AStar3D.xml +++ b/doc/classes/AStar3D.xml @@ -261,7 +261,7 @@ <description> Returns an array with the points that are in the path found by AStar3D between the given points. The array is ordered from the starting point to the ending point of the path. If there is no valid path to the target, and [param allow_partial_path] is [code]true[/code], returns a path to the point closest to the target that can be reached. - [b]Note:[/b] This method is not thread-safe. If called from a [Thread], it will return an empty [PackedVector3Array] and will print an error message. + [b]Note:[/b] This method is not thread-safe. If called from a [Thread], it will return an empty array and will print an error message. </description> </method> <method name="get_point_position" qualifiers="const"> diff --git a/doc/classes/AStarGrid2D.xml b/doc/classes/AStarGrid2D.xml index 794e40fde9..5ccc0c8f2a 100644 --- a/doc/classes/AStarGrid2D.xml +++ b/doc/classes/AStarGrid2D.xml @@ -89,7 +89,7 @@ <description> Returns an array with the points that are in the path found by [AStarGrid2D] between the given points. The array is ordered from the starting point to the ending point of the path. If there is no valid path to the target, and [param allow_partial_path] is [code]true[/code], returns a path to the point closest to the target that can be reached. - [b]Note:[/b] This method is not thread-safe. If called from a [Thread], it will return an empty [PackedVector3Array] and will print an error message. + [b]Note:[/b] This method is not thread-safe. If called from a [Thread], it will return an empty array and will print an error message. </description> </method> <method name="get_point_position" qualifiers="const"> |