CubismUserDataBody.cs 685 B

123456789101112131415161718192021222324252627282930313233
  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 System;
  8. using UnityEngine;
  9. namespace Live2D.Cubism.Framework.UserData
  10. {
  11. /// <summary>
  12. /// Body of user data.
  13. /// </summary>
  14. [Serializable]
  15. public struct CubismUserDataBody
  16. {
  17. /// <summary>
  18. /// Id.
  19. /// </summary>
  20. [SerializeField]
  21. public string Id;
  22. /// <summary>
  23. /// Value.
  24. /// </summary>
  25. [SerializeField]
  26. public string Value;
  27. }
  28. }