Default Dialogue Window

Scripting with the default dialogue window.

The DefaultDialogueWindow is the built-in window that displays dialogue and choices..

Active Instance

To access the active dialogue window instance, use DefaultDialogueWindow.instance.

Notable Methods

Open

The Open method opens the dialogue window.

DefaultDialogueWindow.instance.Open();

Close

The Close method closes the dialogue window.

DefaultDialogueWindow.instance.Close();

Next

To move on to the next piece of dialogue, simply use the Next method. In the case there's dialogue still being "typed out," this method will instead force it to display the remaining text immediately.

DefaultDialogueWindow.instance.Next();

Last updated