Is there a way to skip to the next part of a conversation in code?

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
bluebuttongames
Posts: 91
Joined: Tue Jul 14, 2015 8:22 am

Is there a way to skip to the next part of a conversation in code?

Post by bluebuttongames »

And get around Delay(x) from inside the conversation?

Thanks,
User avatar
Tony Li
Posts: 22062
Joined: Thu Jul 18, 2013 1:27 pm

Re: Is there a way to skip to the next part of a conversation in code?

Post by Tony Li »

Hi,

Call DialogueManager.ConversationView.OnConversationContinueAll().

If you're running multiple simultaneous conversations and want to continue only a specific one, call DialogueManager.ConversationView.OnConversationContinue(dialogueUI).
bluebuttongames
Posts: 91
Joined: Tue Jul 14, 2015 8:22 am

Re: Is there a way to skip to the next part of a conversation in code?

Post by bluebuttongames »

Great, just what I needed.

Thanks.
Post Reply