Click or drag to resize
AStarNode Properties

The AStarNode type exposes the following members.

Properties
  NameDescription
Public propertyDiscovered
Whether this node has already been discovered and added to the open list, or not.
Public propertyF
F score of this node, computed by adding G and H.
Public propertyG
G score of this node, telling the movement cost needed for travelling from the starting node to this one.
Public propertyH
H score of this node, telling the estimated movement cost needed for travelling from this node to the finish.
Public propertyIndex
The unique index of this vertex in the pathfinding graph.
Public propertyParentNode
Previous node on the path to the finish.
Public propertyVisited
Whether this node has already been visited and moved to the closed list, or not.
Top
See Also