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