DelayType.cs 356 B

1234567891011121314151617
  1. namespace LitMotion
  2. {
  3. /// <summary>
  4. /// Specifies the behavior of WithDelay.
  5. /// </summary>
  6. public enum DelayType : byte
  7. {
  8. /// <summary>
  9. /// Delay when starting playback
  10. /// </summary>
  11. FirstLoop = 0,
  12. /// <summary>
  13. /// Delay every loop
  14. /// </summary>
  15. EveryLoop = 1,
  16. }
  17. }