namespace LitMotion { /// /// Specifies the behavior of WithDelay. /// public enum DelayType : byte { /// /// Delay when starting playback /// FirstLoop = 0, /// /// Delay every loop /// EveryLoop = 1, } }