 | AStarNode Constructor |
Constructs a new A* node with the specified unique index.
Namespace: Slash.AI.PathfindingAssembly: Slash.AI.Pathfinding (in Slash.AI.Pathfinding.dll) Version: 1.0.6018.40189
Syntaxprotected AStarNode(
int index
)
Protected Sub New (
index As Integer
)
protected:
AStarNode(
int index
)
new :
index : int -> AStarNode
Parameters
- index
- Type: SystemInt32
Unique index of the new vertex in the pathfinding graph.
See Also