CubismPosePart.cs 617 B

12345678910111213141516171819202122232425262728
  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 UnityEngine;
  8. namespace Live2D.Cubism.Framework.Pose
  9. {
  10. /// <summary>
  11. /// Tagging component for pose part.
  12. /// </summary>
  13. public sealed class CubismPosePart : MonoBehaviour
  14. {
  15. [SerializeField]
  16. public int GroupIndex;
  17. [SerializeField]
  18. public int PartIndex;
  19. [SerializeField]
  20. public string[] Link;
  21. }
  22. }