Link to Another Conversation

Announcements, support questions, and discussion for the Dialogue System.
User avatar
Tony Li
Posts: 21069
Joined: Thu Jul 18, 2013 1:27 pm

Re: Link to Another Conversation

Post by Tony Li »

In the example scene, the line "This is conversation 1" remains after you click "Go to conversation 2." If you don't want this, you can import this updated StandardUISubtitlePanel:

DS2_SubtitlePanel_2018-08-10.unitypackage

It has a new method "ClearText".

This updated example scene uses ClearText:

CloseFadeExample_2018-08-10a.unitypackage

The "Go to conversation 2" line uses this Sequence:

Code: Select all

SendMessage(ClearText,, Subtitle Panel 0);
SendMessage(ClearText,, Subtitle Panel 1);
SendMessage(ClearText,, Subtitle Panel 2);
Fade(stay, 2);
Continue()@2
User avatar
Alatriste
Posts: 181
Joined: Wed Nov 11, 2015 5:07 pm
Contact:

Re: Link to Another Conversation

Post by Alatriste »

Great! The "ClearText" works with the new StandardUISubtitlePanel!
I have to use it in a combination of the "Close" because I also need to disable the portrait which may be visible otherwise.

Thanks for your support, Tony!
User avatar
Tony Li
Posts: 21069
Joined: Thu Jul 18, 2013 1:27 pm

Re: Link to Another Conversation

Post by Tony Li »

Sorry it took me a while to understand what you wanted to do. I'm glad it's working now!
Post Reply