CubismExpressionParameterValue.cs 740 B

1234567891011121314151617181920212223
  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.Expression
  9. {
  10. /**
  11. * @brief Structure that allows parameters to have expression values to be applied.
  12. */
  13. public struct CubismExpressionParameterValue
  14. {
  15. public CubismParameter Parameter; ///< Parameter id.
  16. public float AdditiveValue; ///< Additive value.
  17. public float MultiplyValue; ///< Multiply value.
  18. public float OverwriteValue; ///< Overwrite value.
  19. }
  20. }