Example #1
0
 public void Split()
 {
     child = new Tree4Child(depth + 1, border, brother);
     while (objs.Count > 0)
     {
         child.Add(objs[0]);
         //AddChild(objs[0]);
         DisLink(objs[0]);
     }
     //Debug.Log(1);
 }