Navigation
API > API/Plugins > API/Plugins/DynamicMaterialTextureSet
| |
|
| Name |
EDMTextureChannelMask |
| Type |
enum |
| Header File |
/Engine/Plugins/VirtualProduction/DynamicMaterial/Source/DynamicMaterialTextureSet/Public/DMTextureChannelMask.h |
| Include Path |
#include "DMTextureChannelMask.h" |
Syntax
enum EDMTextureChannelMask
{
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 |
|