FairyGUI.GList.RemoveChildToPool C# (CSharp) Method

RemoveChildToPool() public method

public RemoveChildToPool ( GObject child ) : void
child GObject
return void
        public void RemoveChildToPool(GObject child)
        {
            base.RemoveChild(child);
            ReturnToPool(child);
        }

Usage Example

Ejemplo n.º 1
0
 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