I’m calling UpdateGraphs on my grid graph, passing in a Bounds:
`worldGraph.active.UpdateGraphs(bounds);
`
It seems to work fine (the graph updates properly), but I’m getting a null reference exception:
Here’s AstarPath line1538:
if (node.Walkable && node.Area == 0) {
What might be causing this exception?
Thank you.