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