Beispiel #1
0
    /// <summary> Spawns a "conversation" node with given parameters </summary>
    /// <param name="id"> The identifying number of the conversation </param>
    public void Spawn_ConversationNode(ushort id)
    {
        ConversationNode node = Instantiate(conversation_template).GetComponent <ConversationNode>();

        node.Start_();
        Add(node);
    }