indexType aliases
Type Alias: PixiVNJsonDialog<Text>
> PixiVNJsonDialog<Text> = { character: string; text: Text; } | Text
Defined in: src/schema/PixiVNJsonLabelStep.ts:71
A dialogue line, optionally attributed to a character.
When a plain Text value is used, no character attribution is included.
Type Parameters
Text
Text = string
Union Members
Type Literal
{ character: string; text: Text; }
character
> character: string
The character id that will speak.
text
> text: Text
The text to be displayed.
Text