EnableCondition.cs 137 B

1234567891011
  1. using System;
  2. namespace AnimationOrTween
  3. {
  4. public enum EnableCondition
  5. {
  6. DoNothing,
  7. EnableThenPlay,
  8. IgnoreDisabledState
  9. }
  10. }