Re: Super Text Mesh: Issues while manually calling UnRead()
Posted: Sat May 16, 2020 8:45 am
Hi,
Yes. Check DialogueManager.currentConversationState.hasPCResponses and !hasForceAutoResponse. Example:
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.
}