Hello, I’m using point graph without auto-scan/guo and adding nodes and connections manually in my project. It’s working fine but when I try to remove a node from the graph, I get the following error.
`
IndexOutOfRangeException: Array index is out of range.
Pathfinding.PathHandler.GetPathNode (Pathfinding.GraphNode node) (at Assets/AstarPathfindingProject/Core/PathHandler.cs:278)`
And this is what I do to remove node from the graph.
`AstarPath.RegisterSafeUpdate(delegate() {
PointNode someNode;
~~~
someNode.Destroy();
},true);
`
Could you tell me how you would properly remove a node?