[HOWTO] How To: Play Sequences Without UI At Conversation Start/End
Posted: Thu Sep 01, 2022 10:25 am
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:
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:
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:
1. Set the <START> node's Sequence to:
Code: Select all
SetDialoguePanel(false, immediate)
Code: Select all
AudioWait(SomeNarratorVoiceover1)->Message(Done);
SetDialoguePanel(true)@Message(Done)
Code: Select all
SetDialoguePanel(false); AudioWait(SomeNarratorVoiceover2)