How to Tell If Conversation Exists
How to Tell If Conversation Exists
Is there a way to tell if a conversation exists by the name?
Re: How to Tell If Conversation Exists
Hi,
Try GetConversation:
Try GetConversation:
Code: Select all
if (DialogueManager.masterDatabase.GetConversation("XYZ") != null)
{
Debug.Log("Conversation 'XYZ' exists.");
}