Struct GraphMask
Public
Holds a bitmask of graphs.
This bitmask can hold up to 32 graphs.
The bitmask can be converted to and from integers implicitly.
GraphMask mask1 = GraphMask.FromGraphName("My Grid Graph");
GraphMask mask2 = GraphMask.FromGraphName("My Other Grid Graph");
NNConstraint nn = NNConstraint.Walkable;
nn.graphMask = mask1 | mask2;
// Find the node closest to somePoint which is either in 'My Grid Graph' OR in 'My Other Grid Graph'
var info = AstarPath.active.GetNearest(somePoint, nn);
Public Methods
Public Static Methods
Public Variables
value
Bitmask representing the mask.
Public
Public Static Variables
everything
A mask containing every graph.
Public
Static