EditorLabel
The EditorLabel component is the basic text component in the EditorEX SDK. It displays text with the editor’s font and color settings. It can be combined with Attachables to customize the color.
new EditorLabel()
{
Text = "Hello, World!",
FontSize = 18f,
Alignment = TextAlignmentOptions.Left,
}
.Attach<ColorSOAttachable>("Input/Text/Normal")
.Export(out var _text)
.AsFlexItem()
Last updated on