Interface PathPoint
- All Known Implementing Classes:
- VectorNode
public interface PathPoint
- 
Nested Class SummaryNested Classes
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddCallback(PathPoint.PathCallback callback) Adds a path callback that will be executed if this path point is executed.createAtOffset(Vector vector) Returns a new PathPoint at a given Vector.getGoal()Gets the destination VectorGets the parent PathPointGets the list of manual path vectorsGets the vector represented by this pointvoidsetPathVectors(List<Vector> vectors) Sets the path vectors that will be used at pathfinding time.voidSets the vector location of this point
- 
Method Details- 
addCallbackAdds a path callback that will be executed if this path point is executed.
- 
createAtOffsetReturns a new PathPoint at a given Vector.
- 
getGoalVector getGoal()Gets the destination Vector
- 
getParentPointPathPoint getParentPoint()Gets the parent PathPoint
- 
getPathVectorsGets the list of manual path vectors- See Also:
 
- 
getVectorVector getVector()Gets the vector represented by this point
- 
setPathVectorsSets the path vectors that will be used at pathfinding time. For example, setting a list of vectors to path through in order to reach this pathpoint.
- 
setVectorSets the vector location of this point
 
-