In the inspector where i choose a conversation, I have this:
Code: Select all
[ConversationPopup(true)]
[SerializeField] private string conversation; // Shown WITH database selection field.
I'd like this, cause i sometimes rename conversations, and then it breaks.
So also when I'd like to start a conversation by ID, do I need to convert it to a title using:
Code: Select all
var title = DialogueManager.MasterDatabase.GetConversation(id).Title;
Thanks