diff options
author | Dungeon Master <70334983+ItzCog@users.noreply.github.com> | 2024-08-23 00:11:40 +0800 |
---|---|---|
committer | Dungeon Master <70334983+ItzCog@users.noreply.github.com> | 2024-08-23 02:25:56 +0800 |
commit | 1928a84f6e7980e09ea5c3668aecc28ead55beb2 (patch) | |
tree | d4522778ccf072fb7a31182b77ddc3f0dc9f9537 /doc/classes/AStar3D.xml | |
parent | 568589c9d8c763bfb3a4348174d53b42d7c59f21 (diff) | |
download | redot-engine-1928a84f6e7980e09ea5c3668aecc28ead55beb2.tar.gz |
Fix some C# variable types In `AStar2D/3D` Class Reference
Diffstat (limited to 'doc/classes/AStar3D.xml')
-rw-r--r-- | doc/classes/AStar3D.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/AStar3D.xml b/doc/classes/AStar3D.xml index 281f4edcc1..4448698c32 100644 --- a/doc/classes/AStar3D.xml +++ b/doc/classes/AStar3D.xml @@ -197,7 +197,7 @@ astar.ConnectPoints(2, 3, false); astar.ConnectPoints(4, 3, false); astar.ConnectPoints(1, 4, false); - int[] res = astar.GetIdPath(1, 3); // Returns [1, 2, 3] + long[] res = astar.GetIdPath(1, 3); // Returns [1, 2, 3] [/csharp] [/codeblocks] If you change the 2nd point's weight to 3, then the result will be [code][1, 4, 3][/code] instead, because now even though the distance is longer, it's "easier" to get through point 4 than through point 2. @@ -236,7 +236,7 @@ astar.ConnectPoints(1, 2, true); astar.ConnectPoints(1, 3, true); - int[] neighbors = astar.GetPointConnections(1); // Returns [2, 3] + long[] neighbors = astar.GetPointConnections(1); // Returns [2, 3] [/csharp] [/codeblocks] </description> |