Updated Deprecated Method in C# Example Size to Region
(cherry picked from commit 5b3f14cc82
)
This commit is contained in:
parent
c8bd1259af
commit
77f6d00ad8
|
@ -17,7 +17,7 @@
|
||||||
[/gdscript]
|
[/gdscript]
|
||||||
[csharp]
|
[csharp]
|
||||||
AStarGrid2D astarGrid = new AStarGrid2D();
|
AStarGrid2D astarGrid = new AStarGrid2D();
|
||||||
astarGrid.Size = new Vector2I(32, 32);
|
astarGrid.Region = new Rect2I(0, 0, 32, 32);
|
||||||
astarGrid.CellSize = new Vector2I(16, 16);
|
astarGrid.CellSize = new Vector2I(16, 16);
|
||||||
astarGrid.Update();
|
astarGrid.Update();
|
||||||
GD.Print(astarGrid.GetIdPath(Vector2I.Zero, new Vector2I(3, 4))); // prints (0, 0), (1, 1), (2, 2), (3, 3), (3, 4)
|
GD.Print(astarGrid.GetIdPath(Vector2I.Zero, new Vector2I(3, 4))); // prints (0, 0), (1, 1), (2, 2), (3, 3), (3, 4)
|
||||||
|
|
Loading…
Reference in New Issue