Exemple #1
0
 public void RemoveSelf(bool forceLocal = false)
 {
     if (forceLocal)
     {
         if (m_parent != null)
         {
             m_parent.RemoveChildIntern(this, true);
             m_parent = null;
             m_tree   = null;
         }
     }
     else
     {
         Parent = null;
     }
     ResetPath();
 }