CubismDisplayInfoCombinedParameterInfo.cs 851 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 Live2D.Cubism.Framework.Json;
  8. using UnityEngine;
  9. public class CubismDisplayInfoCombinedParameterInfo : MonoBehaviour
  10. {
  11. /// <summary>
  12. /// Combined parameters from .cdi3.json.
  13. /// </summary>
  14. public CubismDisplayInfo3Json.CombinedParameter[] CombinedParameters
  15. {
  16. get
  17. {
  18. return combinedParameters;
  19. }
  20. set
  21. {
  22. combinedParameters = value;
  23. }
  24. }
  25. /// <summary>
  26. /// backing field for <see cref="CombinedParameters"/>.
  27. /// </summary>
  28. private CubismDisplayInfo3Json.CombinedParameter[] combinedParameters;
  29. }