CubismHarmonicMotionDirection.cs 792 B

12345678910111213141516171819202122232425262728293031
  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.HarmonicMotion
  8. {
  9. /// <summary>
  10. /// Determines the direction of a harmonic motion from its origin.
  11. /// </summary>
  12. public enum CubismHarmonicMotionDirection
  13. {
  14. /// <summary>
  15. /// Motion to the left of the origin.
  16. /// </summary>
  17. Left,
  18. /// <summary>
  19. /// Motion to the right of the origin.
  20. /// </summary>
  21. Right,
  22. /// <summary>
  23. /// Centric left-right motion around the origin.
  24. /// </summary>
  25. Centric,
  26. }
  27. }