Page 2 of 2

Re: Super Text Mesh: Issues while manually calling UnRead()

Posted: Sat May 16, 2020 8:45 am
by Tony Li
Hi,

Yes. Check DialogueManager.currentConversationState.hasPCResponses and !hasForceAutoResponse. Example:

Code: Select all

var state = DialogueManager.currentConversationState;
if (state.hasPCResponses && !state.hasForceAutoResponse)
{
    // A response menu is next.
}

Re: Super Text Mesh: Issues while manually calling UnRead()

Posted: Sat May 16, 2020 10:18 am
by Lollie
Awesome, thank you!

Re: Super Text Mesh: Issues while manually calling UnRead()

Posted: Sat May 16, 2020 10:21 am
by Tony Li
Happy to help! :-)