CubismMotionPriority.cs 591 B

123456789101112131415161718192021
  1. /**
  2. * Copyright(c) Live2D Inc. All rights reserved.
  3. *
  4. * Use of this source code is governed by the Live2D Open Software license
  5. * that can be found at https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html.
  6. */
  7. namespace Live2D.Cubism.Framework.Motion
  8. {
  9. /// <summary>
  10. /// The constants of Motion priorities.
  11. /// </summary>
  12. public class CubismMotionPriority
  13. {
  14. public const int PriorityNone = 0;
  15. public const int PriorityIdle = 1;
  16. public const int PriorityNormal = 2;
  17. public const int PriorityForce = 3;
  18. }
  19. }