Esempio n. 1
0
        public void StartDialogue(string startPoint)
        {
            chatIterator = new ChatIterator(ConversationStub.Collection);

            IsActive = true;
            DialogueBox.SetActive(IsActive);
            NextSentence(startPoint);
        }
Esempio n. 2
0
        public void StartDialogue(string startChatId, List <ChatNode> chatData)
        {
            List <ChatNode> parsedChat = new List <ChatNode>(chatData);

            chatIterator = new ChatIterator(parsedChat);

            IsActive = true;
            DialogueBox.SetActive(IsActive);
            Next(startChatId);
        }