Re: Link to Another Conversation
Posted: Fri Aug 10, 2018 1:28 pm
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:
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