UIToolkitTextSource Component
Overview
This component renders text internally using Unity's UI Toolkit
and then renders the result to Unity UI (UGUI). This allows more complex text rendering such as Arabic, Urdu, Hebrew, Malayalam etc to now be rendered in the Canvas.
Properties
Property | Type | Range | Default | Description |
---|---|---|---|---|
Text | String | The text that appears - can include Rich Text tags. | ||
Font | ||||
Text Generator | Enum | Standard | The text generator mode to use. | |
Font | Font | The font to use. | ||
Font Asset | Font | The font asset - if this is assigned then it overrides the Font property. | ||
Font Size | Float | 14.0 | The font size. | |
Color | Color | White | The text color. | |
Layout | ||||
Text Anchor | Enum | MiddleCenter | The text alignment. | |
Letter Spacing | Float | 0.0 | Add extra spacing between letters. | |
Word Spacing | Float | 0.0 | Add extra spacing between words. | |
Paragraph Spacing | Float | 0.0 | Add extra spacing between paragraphs/lines. | |
Style Sheet | The stylesheet to use during UIToolkit rendering. This must be assigned! | |||
Raycast Target | Boolean | True | Whether or not this Graphic should support the raycaster (picking). | |
Maskable | Boolean | True | Whether or not this Graphic should support the masking components. |
Setup
To use this component you first need to have support for UI Toolkit
enabled:
- Make sure
UI Toolkit
package is enabled to your project (it's usually built-in) - Go to the
Edit > Project Preferences
window and open the UIFX options, enabledUI Toolkit Support
and press theApply Changes
button.
- Wait for the scripts to reload
- Close the Preferences window
Usage
Add this component to a GameObject
in the Canvas
hierarchy and assign the properties (Stylesheet, Font etc).