Home | History | Annotate | Download | only in events

Lines Matching refs:endPosition

31     private Vector3f endPosition;
39 public PositionTrack(Spatial spatial, Vector3f endPosition) {
40 this.endPosition = endPosition;
57 public PositionTrack(Spatial spatial, Vector3f endPosition, float initialDuration, LoopMode loopMode) {
59 this.endPosition = endPosition;
64 public PositionTrack(Spatial spatial, Vector3f endPosition, LoopMode loopMode) {
66 this.endPosition = endPosition;
71 public PositionTrack(Spatial spatial, Vector3f endPosition, float initialDuration) {
73 this.endPosition = endPosition;
85 spatial.setLocalTranslation(endPosition);
93 Vector3f pos = FastMath.interpolateLinear(value, startPosition, endPosition);
112 oc.write(endPosition, "endPosition", null);
120 endPosition = (Vector3f) ic.readSavable("endPosition", null);