Sequential Animation
data class SequentialAnimation(val animations: List<Animation>) : Animation
Content copied to clipboard
An Animation consisting of multiple Animations that is played in sequence, when this SequentialAnimation is played.
Constructors
Link copied to clipboard
creates a new SequentialAnimation Additional constructor that enables the use of varargs for the animations.
Link copied to clipboard
creates a new SequentialAnimation.
Properties
Link copied to clipboard
The Animations that this SequentialAnimation should contain. Lowest index is played first, the highest index is played last.
Link copied to clipboard
Gets invoked when Animation has finished.