private void Start () 
	{
        this.m_VisitCounter = new Dictionary<int, int>();

		this.m_Conversation = new VerbalTree(
			VerbalData.loadFromJSON(this.m_ConversationJson.ToString()),
			this.m_VerbalUI.show,
			this.testCond,
			this.onNodeEntered
		);

        this.m_VerbalUI.m_OnAnswerSelected = this.m_Conversation.onAnswerSelected;

        this.m_Conversation.startConversation();
	}
示例#2
0
    private void Start()
    {
        this.m_VisitCounter = new Dictionary <int, int>();

        this.m_Conversation = new VerbalTree(
            VerbalData.loadFromJSON(this.m_ConversationJson.ToString()),
            this.m_VerbalUI.show,
            this.testCond,
            this.onNodeEntered
            );

        this.m_VerbalUI.m_OnAnswerSelected = this.m_Conversation.onAnswerSelected;

        this.m_Conversation.startConversation();
    }