Super Text Mesh: Issues while manually calling UnRead()

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

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

Post 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.
}
User avatar
Lollie
Posts: 11
Joined: Tue May 12, 2020 7:47 am

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

Post by Lollie »

Awesome, thank you!
User avatar
Tony Li
Posts: 22054
Joined: Thu Jul 18, 2013 1:27 pm

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

Post by Tony Li »

Happy to help! :-)
Post Reply