Enum BlendingMode.ColorWrite
Render target write mask
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public enum ColorWrite
Fields
Name | Description |
---|---|
All | Allow data to be stored in all components. |
Alpha | Allow data to be stored in the alpha component. |
Blue | Allow data to be stored in the blue component. |
Green | Allow data to be stored in the green component. |
None | No color writing. |
Red | Allow data to be stored in the red component. |
RG | Allow data to be stored in red and green components. |
RGB | Allow data to be stored in red, green and blue components. |
RGBA | Allow data to be stored in all components. |