I start conversations via code through
Code: Select all
StartConversation(string title)
A typical use would be the scenario in which I want to define a collection of conversations that that script will start.
My current workaround is making a static class with the references
Code: Select all
[Flags]
public enum Conversations
{
Welcome = 1 << 0,
Test1 = 1 << 1,
Test2 = 1 << 2,
//etc...
}
Code: Select all
m_rDialogueSystemController.StartConversation(nameof(DialogueSystemRefs.Conversations.Welcome));
Thanks in advance to everyone!