repeat
fun <T> repeat(animationPlan: FiniteNumericAnimationPlan<T, Double>, times: Int = 1, type: RepetitionType = Restart): FiniteNumericAnimationPlan<T, Double>(source)
fun <T> repeat(animationPlan: FiniteNumericAnimationPlan<T, Array<Double>>, times: Int = 1, type: RepetitionType = Restart): FiniteNumericAnimationPlan<T, Array<Double>>(source)
Repeats the given animationPlan for the specified number of times.
Parameters
animationPlan
to repeat
times
to repeat
fun <T>
fun <T>
Deprecated
use after method instead to add delays
Replace with
after(delay, repeat(animationPlan, times, type))
Content copied to clipboard
Repeats the given animationPlan for the specified number of times.
Parameters
animationPlan
to repeat
times
to repeat
delay
to apply before the animation begins