Home
last modified time | relevance | path

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

/external/lottie/lottie/src/main/java/com/airbnb/lottie/value/
DKeyframe.java28 private float endProgress = Float.MIN_VALUE; field in Keyframe
73 if (endProgress == Float.MIN_VALUE) { in getEndProgress()
75 endProgress = 1f; in getEndProgress()
80 endProgress = startProgress + durationProgress; in getEndProgress()
83 return endProgress; in getEndProgress()
/external/lottie/LottieSample/src/main/kotlin/com/airbnb/lottie/samples/
DTrimView.kt44 val endProgress = rightAnchor.right / width.toFloat() in onViewPositionChanged() constant
45 callback(startProgress, endProgress) in onViewPositionChanged()
DAppIntroActivity.kt57 val endProgress = ANIMATION_TIMES[position + 1] in <lambda>() constant
59 animationView.progress = startProgress.lerp(endProgress, positionOffset) in <lambda>()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/
DLottieAnimationView.java594 public void setMaxProgress(@FloatRange(from = 0f, to = 1f) float endProgress) { in setMaxProgress()
595 lottieDrawable.setMaxProgress(endProgress); in setMaxProgress()
/external/lottie/
DCHANGELOG.md288 * Added `play(startFrame, endFrame)` and `play(startProgress, endProgress)`.