Methods in org.deken.game.pathfinding that return Path |
Path |
PathFindingUtils.constructPath(Node node,
java.util.List<Node> pathList)
Builds a Path from Node through the List of Nodes |
Path |
PathFinding.getPath(Node startNode,
Node goalNode)
Gets path from the start to the goal. |
Path |
PathFindingAStar.getPath(Node startNode,
Node goalNode)
|
Path |
PathFindingBreathFirst.getPath(Node startNode,
Node goalNode)
|
Path |
PathFinding.getPath(Node startNode,
Node goalNode,
int excludeX,
int excludeY)
Gets the path from the start, by not going through the excludeX & Y. |
Path |
PathFindingAStar.getPath(Node startNode,
Node goalNode,
int excludeX,
int excludeY)
|
Path |
PathFindingBreathFirst.getPath(Node startNode,
Node goalNode,
int excludeX,
int excludeY)
|