summaryrefslogtreecommitdiffstats
path: root/doc/classes/AStar3D.xml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-08-28 00:10:47 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-08-28 00:10:47 +0200
commit1e6b6eaf49fcee309b44a13e5585b6731d44bec4 (patch)
tree245edc9f64025f3df1c943b28a36e3659816440a /doc/classes/AStar3D.xml
parent9c7cf5440cba7e2bbccd9d6e516c0f990d45ce4a (diff)
parented61d416978760f6bdb511670fcd395890319ff2 (diff)
downloadredot-engine-1e6b6eaf49fcee309b44a13e5585b6731d44bec4.tar.gz
Merge pull request #92123 from timothyqiu/estimate-end
Change param name of AStar's `_estimate_cost` method
Diffstat (limited to 'doc/classes/AStar3D.xml')
-rw-r--r--doc/classes/AStar3D.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/AStar3D.xml b/doc/classes/AStar3D.xml
index 4448698c32..dad77cc7a8 100644
--- a/doc/classes/AStar3D.xml
+++ b/doc/classes/AStar3D.xml
@@ -51,7 +51,7 @@
<method name="_estimate_cost" qualifiers="virtual const">
<return type="float" />
<param index="0" name="from_id" type="int" />
- <param index="1" name="to_id" type="int" />
+ <param index="1" name="end_id" type="int" />
<description>
Called when estimating the cost between a point and the path's ending point.
Note that this function is hidden in the default [AStar3D] class.