Page 1 of 1

[HOWTO] How To: Play Sequences Without UI At Conversation Start/End

Posted: Thu Sep 01, 2022 10:25 am
by Tony Li
If you want to play a cutscene sequence when a conversation starts and/or ends, without showing the dialogue UI until the cutscene sequence has finished, use these steps:

1. Set the <START> node's Sequence to:

Code: Select all

SetDialoguePanel(false, immediate)
2. Add a child node. Leave its Dialogue Text blank. Include your sequence in the Sequence field. At the end of the sequence, use SetDialoguePanel(true). For example:

Code: Select all

AudioWait(SomeNarratorVoiceover1)->Message(Done);
SetDialoguePanel(true)@Message(Done)
3. At the end of the conversation, to play a sequence without the dialogue UI, add a node. Use SetDialoguePanel(false) and include your sequence. Example:

Code: Select all

SetDialoguePanel(false); AudioWait(SomeNarratorVoiceover2)