コード例 #1
0
 public void Deactivate()
 {
     Parent = null;
     if (Children.IsNotNull())
     {
         for (int i = 0; i < Children.PeakCount; i++)
         {
             if (Children.arrayAllocation [i])
             {
                 Children [i].Parent = null;
             }
         }
     }
 }