FairyGUI.GList.RemoveChildToPool C# (CSharp) Méthode

RemoveChildToPool() public méthode

public RemoveChildToPool ( GObject child ) : void
child GObject
Résultat void
        public void RemoveChildToPool(GObject child)
        {
            base.RemoveChild(child);
            ReturnToPool(child);
        }

Usage Example

 static public int RemoveChildToPool(IntPtr l)
 {
     try {
         FairyGUI.GList   self = (FairyGUI.GList)checkSelf(l);
         FairyGUI.GObject a1;
         checkType(l, 2, out a1);
         self.RemoveChildToPool(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.GList::RemoveChildToPool