FUxtTextBrush
Structure which contains data representing the appearance of text.
struct FUxtTextBrush;
Header
#include <UxtTextBrush.h>
Public Attributes
| Name | |
|---|---|
| UFont * | Font |
| UMaterialInterface * | Material |
| FVector | RelativeLocation |
| FRotator | RelativeRotation |
| float | Size |
| FColor | DefaultColor |
| FColor | DisabledColor |
Public Attributes Documentation
variable Font
UFont* FUxtTextBrush::Font
UFont * Font = nullptr;
The font used by the text.
variable Material
UMaterialInterface* FUxtTextBrush::Material
UMaterialInterface * Material = nullptr;
The material used by the text.
variable RelativeLocation
FVector FUxtTextBrush::RelativeLocation
FVector RelativeLocation = FVector::ZeroVector;
The text's location compared to it's parent component.
variable RelativeRotation
FRotator FUxtTextBrush::RelativeRotation
FRotator RelativeRotation = FRotator::ZeroRotator;
The text's rotation compared to it's parent component.
variable Size
float FUxtTextBrush::Size
float Size = 1.0f;
The size of the text, normally the font size.
variable DefaultColor
FColor FUxtTextBrush::DefaultColor
FColor DefaultColor = FColor::White;
The default color of the brush, by default the text color.
variable DisabledColor
FColor FUxtTextBrush::DisabledColor
FColor DisabledColor = FColor(32, 32, 32);
The disabled color of the brush, by default the text color.
Updated on 19 August 2021 at 17:42:52 Coordinated Universal Time