Example #1
0
        public void AddNode(Node node)
        {
            if (!IsExist(node))
            {
                if (node.GetFragment() != this)
                    node.SetFragment(this);

                m_NodeList.Add(node);
                m_bIsGraphDirty = true;
            }
        }