Hi, I have a graph grid, and I would like to allow diagonal connections between A and B on that situation :
A X
X B
where X is an obstacle/non walkable node
I read some post in the forum about the BlockManager.filterDiagonalGridConnections and ITraversalProvider.filterDiagonalGridConnections, both are set to false, but when refreshing the graph I still have the diagonal connection disabled on exposed situation. I took a look to the GridNode.FilterDiagonalConnections function but as it uses bitmasks I don’t know how to change it to allow me to do what I need.
This is my first issue.
My second issue it that I would like to enable those diagonal connections only in some situations, depending of obstacle type on the X tiles, would you have advices on how to proceed ?
I’m using Astar version 5.2.4
Thank you.