public interface NavigationNode extends BHeapNode
| Modifier and Type | Method and Description |
|---|---|
int |
getClosedOnJob() |
float |
getF() |
float |
getG() |
float |
getH()
Gets the computed value of the heuristic used to get from this point to the goal node.
|
int |
getOpenedOnJob() |
NavigationNode |
getParent() |
boolean |
isWalkable() |
void |
setClosedOnJob(int job) |
void |
setF(float f) |
void |
setG(float g) |
void |
setH(float h)
Sets the computed value of the heuristic used to get from this point to the goal node.
|
void |
setOpenedOnJob(int job) |
void |
setParent(NavigationNode parent)
The Node from which this node is reachable
|
void |
setWalkable(boolean walkable) |
void setParent(NavigationNode parent)
NavigationNode getParent()
int getClosedOnJob()
void setClosedOnJob(int job)
int getOpenedOnJob()
void setOpenedOnJob(int job)
float getF()
void setF(float f)
float getG()
void setG(float g)
float getH()
PathFinderOptions.heuristic used to navigate the gridvoid setH(float h)
PathFinderOptions.heuristic used to navigate the gridboolean isWalkable()
void setWalkable(boolean walkable)