mirror of https://github.com/godotengine/godot
Merge pull request #105631 from smix8/astar_capacity_error
Remove `AStar2D/3D` comments on `reserve_space()` capacity needs
This commit is contained in:
commit
9dc4ec8b02
|
|
@ -278,7 +278,7 @@
|
|||
<return type="void" />
|
||||
<param index="0" name="num_nodes" type="int" />
|
||||
<description>
|
||||
Reserves space internally for [param num_nodes] points. Useful if you're adding a known large number of points at once, such as points on a grid. The new capacity must be greater or equal to the old capacity.
|
||||
Reserves space internally for [param num_nodes] points. Useful if you're adding a known large number of points at once, such as points on a grid.
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_point_disabled">
|
||||
|
|
|
|||
|
|
@ -318,7 +318,7 @@
|
|||
<return type="void" />
|
||||
<param index="0" name="num_nodes" type="int" />
|
||||
<description>
|
||||
Reserves space internally for [param num_nodes] points. Useful if you're adding a known large number of points at once, such as points on a grid. New capacity must be greater or equals to old capacity.
|
||||
Reserves space internally for [param num_nodes] points. Useful if you're adding a known large number of points at once, such as points on a grid.
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_point_disabled">
|
||||
|
|
|
|||
Loading…
Reference in New Issue