Example #1
0
 public PathNode GetNode(int x, int y)
 {
     return(grid.GetObject(x, y));
 }
Example #2
0
 public bool isWalkablePos(Vector2Int pos)
 {
     return(grid.GetObject(pos.x, pos.y).isWalkable);
 }