Property Documentation
int NodeInGridIndex
The index of the node in the grid.
This is x + zgraph.width **(+ ygraph.width*graph.depth if this is a LayerGridGraph)**
Is the documentation correct regarding the LayerGridGraph?
The actual code in LayerGridGraphGenerator.cs does not include + ygraph.widthgraph.depth:
node.NodeInGridIndex = z*width+x;