Base class for path finding, currently only AStarSearch is supported and used.
View code on GitHub
Inheritance Hierarchy
DeltaEngine.GameLogic.PathFinding GraphSearch
DeltaEngine.GameLogic.PathFinding AStarSearch
Namespace: DeltaEngine.GameLogic.PathFinding
Assembly: DeltaEngine.GameLogic.PathFinding (in DeltaEngine.GameLogic.PathFinding.dll) Version: 1.1.1.0 (1.1.1)
Syntax
The GraphSearch type exposes the following members.
Constructors
Name | Description | |
---|---|---|
GraphSearch | Initializes a new instance of the GraphSearch class |
Methods
Name | Description | |
---|---|---|
GetNextNode | ||
GetPath | ||
Initialize | ||
Search |
Fields
Name | Description | |
---|---|---|
costSoFar | ||
graph | ||
Infinity | ||
InvalidNodeIndex | ||
nodesToCheck | ||
previousNode | ||
startNode | ||
targetNode | ||
visitedNodes |
See Also