| IAStarNode Interface |
Namespace: Slash.AI.Pathfinding
The IAStarNode type exposes the following members.
| Name | Description | |
|---|---|---|
| Discovered |
Whether this node has already been discovered and added to the
open list, or not.
| |
| F |
F score of this node, computed by adding G and H.
| |
| G |
G score of this node, telling the movement cost needed
for travelling from the starting node to this one.
| |
| H |
H score of this node, telling the estimated movement cost
needed for travelling from this node to the finish.
| |
| ParentNode |
Previous node on the path to the finish.
| |
| Visited |
Whether this node has already been visited and moved to the
closed list, or not.
|
| Name | Description | |
|---|---|---|
| EstimateHeuristicMovementCost |
Returns the estimated, heuristic movement cost needed to get
from this node to the specified other one.
| |
| Reset |
Resets this node, clearing its parent and visited status.
|