Enum BlendMode
The blending mode to use when combining two colors together
Assembly: ChocDino.UIFX.dllβ
Declaration
public enum BlendMode
Fieldsβ
Sourceβ
Source
- Only use the original color, this ignores any trail gradient/alpha settings.
Declaration
Source = 0
Replaceβ
Replace
- Ignore the original color and replace with the trail gradient/alpha settings.<br />Replace_Multiply
Declaration
Replace = 1
Replace_Multiplyβ
Replace_Multiply
- Same as Replace
for RGB, but multiply the original alpha with the trail gradient alpha.
Declaration
Replace_Multiply = 2
Multiplyβ
Multiply
- Multiply the original color with the trail gradient/alpha settings.
Declaration
Multiply = 3
Add_Multiplyβ
Add_Multiply
- Add the original color RGB to the gradient gradient, but multiply the alpha value.
Declaration
Add_Multiply = 4