LinkBehaviour.cs 268 B

123456789101112
  1. namespace LitMotion
  2. {
  3. /// <summary>
  4. /// Specifies the behavior when linking motion to GameObject with AddTo.
  5. /// </summary>
  6. public enum LinkBehaviour
  7. {
  8. CancelOnDestroy = 0,
  9. CancelOnDisable = 1,
  10. CompleteOnDisable = 2
  11. }
  12. }