Navigation
API > API/Plugins > API/Plugins/DynamicMaterialEditor
| Name | EAvaColorChannel |
| Type | enum |
| Header File | /Engine/Plugins/VirtualProduction/DynamicMaterial/Source/DynamicMaterialEditor/Public/DMEDefs.h |
| Include Path | #include "DMEDefs.h" |
Syntax
enum EAvaColorChannel
{
None = 0,
Red = 1 << 0,
Green = 1 << 1,
Blue = 1 << 2,
Alpha = 1 << 3,
RGB = Red|Green|Blue,
RGBA = Red|Green|Blue|Alpha,
}
Values
| Name | Remarks |
|---|---|
| None | |
| Red | |
| Green | |
| Blue | |
| Alpha | |
| RGB | |
| RGBA |