Page 1 of 1
Is there a way to skip to the next part of a conversation in code?
Posted: Fri Dec 08, 2017 8:14 am
by bluebuttongames
And get around Delay(x) from inside the conversation?
Thanks,
Re: Is there a way to skip to the next part of a conversation in code?
Posted: Fri Dec 08, 2017 11:23 am
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).
Re: Is there a way to skip to the next part of a conversation in code?
Posted: Fri Dec 08, 2017 4:56 pm
by bluebuttongames
Great, just what I needed.
Thanks.