Create the shell of an animation. Once the shell is created, use "to()" to add steps to the animation.
Should the animation repeat?
Readonly
loopShould the animation repeat?
A set of images that can be used as frames of an animation, along with their durations
Make a clone of this animation
Add a step to an animation
The name of the image to add to the animation
The time in milliseconds that this image should be shown
The Animation, so that we can chain calls to "to()"
Static
makeCreate a "simple" animation (i.e., one that shows each of a set of images for the same amount of time)
The names of the images that comprise the animation
True if the animation should repeat when it reaches the end
The time to show each image, in milliseconds
The animation
AnimationSequence describes a set of images that can be cycled through, in order to achieve an animation effect. We associate a time (in milliseconds) with each image, and also allow the animation to loop.