::

enum AnimationRepeat
Description
These constants determine how the [0,1] parameter range of the animation is driven through.

Values
oneShot The [0,1] parameter range is sweeped through exactly once, starting with 0 and ending with 1.
oneShotPingPong The [0,1] parameter range is sweeped through exactly twice, starting with 0, going to 1, and going back to 0.
pingPong The [0,1] parameter range is sweeped through infinitely, starting with 0, going to 1, and going back to 0, and then starting again.
repeat The [0,1] parameter range is sweeped through infinitely, starting with 0, going to 1, and starting with 0 again.
Values' Details
oneShot
oneShot,
Description
The [0,1] parameter range is sweeped through exactly once, starting with 0 and ending with 1.
oneShotPingPong
oneShotPingPong,
Description
The [0,1] parameter range is sweeped through exactly twice, starting with 0, going to 1, and going back to 0.
pingPong
pingPong,
Description
The [0,1] parameter range is sweeped through infinitely, starting with 0, going to 1, and going back to 0, and then starting again.
repeat
repeat,
Description
The [0,1] parameter range is sweeped through infinitely, starting with 0, going to 1, and starting with 0 again.
Top of Page