Hi,
Is there a way to know which conversation is currently playing?
Thanks!
[Solved] Which Conversation is Active?
[Solved] Which Conversation is Active?
Last edited by Japtor on Tue Dec 11, 2018 3:55 pm, edited 1 time in total.
Re: Which Conversation is Active?
Hi,
Yes:
You can also check DialogueManager.currentConversationState.subtitle.dialogueEntry.conversationID if you prefer.
Yes:
Code: Select all
if (DialogueManager.isConversationActive) {
Debug.Log("Active conversation is " + DialogueManager.lastConversationStarted);
}
Re: Which Conversation is Active?
Hi,
Thanks! However, I have tried to use DialogueManager.LastConversationID instead, and it works!
But the other suggestions also do what I was looking for!
Thanks! However, I have tried to use DialogueManager.LastConversationID instead, and it works!
But the other suggestions also do what I was looking for!