CubismPoseData.cs 803 B

1234567891011121314151617181920212223242526272829303132333435
  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. using Live2D.Cubism.Core;
  8. namespace Live2D.Cubism.Framework.Pose
  9. {
  10. public struct CubismPoseData
  11. {
  12. /// <summary>
  13. /// Cubism pose part.
  14. /// </summary>
  15. public CubismPosePart PosePart;
  16. /// <summary>
  17. /// Cubism part cache.
  18. /// </summary>
  19. public CubismPart Part;
  20. /// <summary>
  21. /// Link parts cache.
  22. /// </summary>
  23. public CubismPart[] LinkParts;
  24. /// <summary>
  25. /// Cubism part opacity.
  26. /// </summary>
  27. public float Opacity;
  28. }
  29. }