Lines Matching refs:targetValue
471 * @param targetValue The target value of the interpolation.
474 public Tween target(float targetValue) {
475 targetValues[0] = targetValue;
549 * @param targetValue The relative target value of the interpolation.
552 public Tween targetRelative(float targetValue) {
554 targetValues[0] = isInitialized() ? targetValue + startValues[0] : targetValue;
629 * @param targetValue The target of this waypoint.
632 public Tween waypoint(float targetValue) {
634 waypoints[waypointsCnt] = targetValue;