Name | Type | Description |
---|---|---|
options |
TextOptions |
The options of the text. |
Example
import { Text } from 'pixi.js';
const text = new Text({
text: 'Hello Pixi!',
style: {
fontFamily: 'Arial',
fontSize: 24,
fill: 0xff1010,
align: 'center',
}
});