summaryrefslogtreecommitdiffstats
path: root/doc/classes/AStar3D.xml
diff options
context:
space:
mode:
authorHaoyu Qiu <timothyqiu32@gmail.com>2024-05-19 22:08:36 +0800
committerHaoyu Qiu <timothyqiu32@gmail.com>2024-05-19 22:08:36 +0800
commited61d416978760f6bdb511670fcd395890319ff2 (patch)
tree4769a930d68a98f2f72617d6ce31bc9c5d1ac976 /doc/classes/AStar3D.xml
parentdaa81bbb7d1c6d75d1711595604178ee62a5801d (diff)
downloadredot-engine-ed61d416978760f6bdb511670fcd395890319ff2.tar.gz
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 281f4edcc1..c256918c46 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.