CubismParameterBlendMode.cs 745 B

12345678910111213141516171819202122232425262728293031323334
  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
  9. {
  10. /// <summary>
  11. /// Enumeration of <see cref="CubismParameter"/> blend modes.
  12. /// </summary>
  13. public enum CubismParameterBlendMode
  14. {
  15. /// <summary>
  16. /// Override blending.
  17. /// </summary>
  18. Override,
  19. /// <summary>
  20. /// Additive blending.
  21. /// </summary>
  22. Additive,
  23. /// <summary>
  24. /// Multiply blending.
  25. /// </summary>
  26. Multiply
  27. }
  28. }