Home | History | Annotate | Download | only in tweenengine

Lines Matching refs:startValues

354 	private final float[] startValues = new float[combinedAttrsLimit];
554 targetValues[0] = isInitialized() ? targetValue + startValues[0] : targetValue;
573 targetValues[0] = isInitialized() ? targetValue1 + startValues[0] : targetValue1;
574 targetValues[1] = isInitialized() ? targetValue2 + startValues[1] : targetValue2;
594 targetValues[0] = isInitialized() ? targetValue1 + startValues[0] : targetValue1;
595 targetValues[1] = isInitialized() ? targetValue2 + startValues[1] : targetValue2;
596 targetValues[2] = isInitialized() ? targetValue3 + startValues[2] : targetValue3;
615 this.targetValues[i] = isInitialized() ? targetValues[i] + startValues[i] : targetValues[i];
802 accessor.getValues(target, type, startValues);
805 targetValues[i] += isRelative ? startValues[i] : 0;
808 waypoints[ii*combinedAttrsCnt+i] += isRelative ? startValues[i] : 0;
812 float tmp = startValues[i];
813 startValues[i] = targetValues[i];
826 accessor.setValues(target, type, isReverse(lastStep) ? startValues : targetValues);
831 accessor.setValues(target, type, isReverse(lastStep) ? targetValues : startValues);
844 accessor.setValues(target, type, isReverse(step) ? targetValues : startValues);
849 accessor.setValues(target, type, isReverse(step) ? startValues : targetValues);
860 accessorBuffer[i] = startValues[i] + t * (targetValues[i] - startValues[i]);
865 pathBuffer[0] = startValues[i];
885 accessor.setValues(target, type, startValues);