diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-04 15:42:42 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-04 15:42:42 +0200 |
commit | 1e544505be34c794d83052ea48ed70702cdec831 (patch) | |
tree | e067ff9c8a07ed9732cb7a78ed57c98dc692d31c /doc/classes/AStarGrid2D.xml | |
parent | a8743449386303ec8beea24d6afceba88d23d9e8 (diff) | |
parent | cc0eebd9d8a42f3e57d4633c4388faa6d369d2c8 (diff) | |
download | redot-engine-1e544505be34c794d83052ea48ed70702cdec831.tar.gz |
Merge pull request #82691 from YuriSizov/rst-validate-with-exceptions
Validate `code` tags for class and member references
Diffstat (limited to 'doc/classes/AStarGrid2D.xml')
-rw-r--r-- | doc/classes/AStarGrid2D.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/classes/AStarGrid2D.xml b/doc/classes/AStarGrid2D.xml index 276db35d83..277630588a 100644 --- a/doc/classes/AStarGrid2D.xml +++ b/doc/classes/AStarGrid2D.xml @@ -35,7 +35,7 @@ <param index="1" name="to_id" type="Vector2i" /> <description> Called when computing the cost between two connected points. - Note that this function is hidden in the default [code]AStarGrid2D[/code] class. + Note that this function is hidden in the default [AStarGrid2D] class. </description> </method> <method name="_estimate_cost" qualifiers="virtual const"> @@ -44,7 +44,7 @@ <param index="1" name="to_id" type="Vector2i" /> <description> Called when estimating the cost between a point and the path's ending point. - Note that this function is hidden in the default [code]AStarGrid2D[/code] class. + Note that this function is hidden in the default [AStarGrid2D] class. </description> </method> <method name="clear"> @@ -84,7 +84,7 @@ <param index="0" name="from_id" type="Vector2i" /> <param index="1" name="to_id" type="Vector2i" /> <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. + 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. [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. </description> </method> |