choose specific dialogue states to have auto continue

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
PepeJEe
Posts: 18
Joined: Sat Apr 24, 2021 8:39 am

choose specific dialogue states to have auto continue

Post by PepeJEe »

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. :D
User avatar
Tony Li
Posts: 21722
Joined: Thu Jul 18, 2013 1:27 pm

Re: choose specific dialogue states to have auto continue

Post by Tony Li »

Hi,

You can use the SetContinueMode() sequencer command. For example, set the first node's Sequence to:

Code: Select all

SetContinueMode(false);
Delay({{end}})
Set the third node's Sequence to:

Code: Select all

SetContinueMode(true)
Post Reply