Home | History | Annotate | Download | only in events

Lines Matching refs:endScale

31     private Vector3f endScale;
51 public ScaleTrack(Spatial spatial, Vector3f endScale) {
52 this.endScale = endScale;
57 public ScaleTrack(Spatial spatial, Vector3f endScale, float initialDuration, LoopMode loopMode) {
59 this.endScale = endScale;
64 public ScaleTrack(Spatial spatial, Vector3f endScale, LoopMode loopMode) {
66 this.endScale = endScale;
71 public ScaleTrack(Spatial spatial, Vector3f endScale, float initialDuration) {
73 this.endScale = endScale;
84 spatial.setLocalScale(endScale);
93 spatial.setLocalScale(FastMath.interpolateLinear(value, startScale, endScale));
111 oc.write(endScale, "endScale", null);
119 endScale = (Vector3f) ic.readSavable("endScale", null);