Hi
I was wondering how to get the name of the current conversation.
I am not talking about LastConversationStarted.
The problem is, that if I link to another conversation, then LastConversationStarted will still give me the original conversation from which I came - not the current one I just transfered to via the link.
Any way to get the name of the conversation I am currently in?
How to get current conversation - not last started
Re: How to get current conversation - not last started
Hi,
Yes:
Yes:
Code: Select all
int conversationID = DialogueManager.currentConversationState.subtitle.dialogueEntry.conversationID;
Conversation conversation = DialogueManager.masterDatabase.GetConversation(conversationID);
Debug.Log("Current conversation is: " + conversation.Title);
Re: How to get current conversation - not last started
Beautiful - thanks as always for a quick and helpful reply!
Re: How to get current conversation - not last started
Glad to help!