diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-05-19 22:08:36 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-05-19 22:08:36 +0800 |
commit | ed61d416978760f6bdb511670fcd395890319ff2 (patch) | |
tree | 4769a930d68a98f2f72617d6ce31bc9c5d1ac976 /doc/classes/AStar3D.xml | |
parent | daa81bbb7d1c6d75d1711595604178ee62a5801d (diff) | |
download | redot-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.xml | 2 |
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. |