Enum CanvasItem.BlendMode
enum BlendMode
: int { ... }
Enum members
Name | Description |
blendModeAdd
|
Additive blending mode.
|
blendModeDisabled
|
Disables blending mode. Colors including alpha are written as-is. Only applicable for render targets with a transparent background. No lighting will be applied.
|
blendModeMix
|
Mix blending mode. Colors are assumed to be independent of the alpha (opacity) value.
|
blendModeMul
|
Multiplicative blending mode.
|
blendModePremultAlpha
|
Mix blending mode. Colors are assumed to be premultiplied by the alpha (opacity) value.
|
blendModeSub
|
Subtractive blending mode.
|