Home
last modified time | relevance | path

Searched refs:targetValue2 (Results 1 – 1 of 1) sorted by relevance

/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
DTween.java493 public Tween target(float targetValue1, float targetValue2) { in target() argument
495 targetValues[1] = targetValue2; in target()
514 public Tween target(float targetValue1, float targetValue2, float targetValue3) { in target() argument
516 targetValues[1] = targetValue2; in target()
571 public Tween targetRelative(float targetValue1, float targetValue2) { in targetRelative() argument
574 targetValues[1] = isInitialized() ? targetValue2 + startValues[1] : targetValue2; in targetRelative()
592 public Tween targetRelative(float targetValue1, float targetValue2, float targetValue3) { in targetRelative() argument
595 targetValues[1] = isInitialized() ? targetValue2 + startValues[1] : targetValue2; in targetRelative()
653 public Tween waypoint(float targetValue1, float targetValue2) { in waypoint() argument
656 waypoints[waypointsCnt*2+1] = targetValue2; in waypoint()
[all …]