Home
last modified time | relevance | path

Searched refs:targetValue1 (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
494 targetValues[0] = targetValue1; in target()
514 public Tween target(float targetValue1, float targetValue2, float targetValue3) { in target() argument
515 targetValues[0] = targetValue1; in target()
571 public Tween targetRelative(float targetValue1, float targetValue2) { in targetRelative() argument
573 targetValues[0] = isInitialized() ? targetValue1 + startValues[0] : targetValue1; in targetRelative()
592 public Tween targetRelative(float targetValue1, float targetValue2, float targetValue3) { in targetRelative() argument
594 targetValues[0] = isInitialized() ? targetValue1 + startValues[0] : targetValue1; in targetRelative()
653 public Tween waypoint(float targetValue1, float targetValue2) { in waypoint() argument
655 waypoints[waypointsCnt*2] = targetValue1; in waypoint()
[all …]