Navigation
API > API/Runtime > API/Runtime/Slate
| Name | EColorBlockAlphaDisplayMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/Slate/Public/Widgets/Colors/SColorBlock.h |
| Include Path | #include "Widgets/Colors/SColorBlock.h" |
Syntax
enum EColorBlockAlphaDisplayMode
{
Combined,
Separate,
SeparateReverse,
Ignore,
}
Values
| Name | Remarks |
|---|---|
| Combined | Draw a single block that draws color and opacity as one. I.E the entire block will be semi-transparent if opacity < 1. |
| Separate | The color block is split into in half. The left half draws the color with opacity and the right half draws without any opacity. |
| SeparateReverse | The color block is split into in half. The left half draws the color without any opacity and the right half draws with opacity. |
| Ignore | Alpha is omitted from display. |