Hey, I got my dialogue working and it's really simple to do when you look into the manuals etc. xD
Well I have one simple question. I have 7 dialogue states and I want to have auto continue for the first tree dialogue boxes/states. After the 3rd dialogue I want my continue button to appear. Is there a way to do that? Currently I have continue button working between each dialogue.
choose specific dialogue states to have auto continue
Re: choose specific dialogue states to have auto continue
Hi,
You can use the SetContinueMode() sequencer command. For example, set the first node's Sequence to:
Set the third node's Sequence to:
You can use the SetContinueMode() sequencer command. For example, set the first node's Sequence to:
Code: Select all
SetContinueMode(false);
Delay({{end}})
Code: Select all
SetContinueMode(true)