namespace LitMotion
{
///
/// Specifies the behavior when repeating the animation with `WithLoops`.
///
public enum LoopType : byte
{
///
/// Repeat from beginning.
///
Restart,
///
/// Cycles back and forth between the end and start values.
///
Yoyo,
///
/// Increase the value each time the repeats.
///
Incremental
}
}