FairyGUI.GList.RemoveChildToPoolAt C# (CSharp) Method

RemoveChildToPoolAt() public method

public RemoveChildToPoolAt ( int index ) : void
index int
return void
        public void RemoveChildToPoolAt(int index)
        {
            GObject child = base.RemoveChildAt(index);
            ReturnToPool(child);
        }

Usage Example

示例#1
0
 static public int RemoveChildToPoolAt(IntPtr l)
 {
     try {
         FairyGUI.GList self = (FairyGUI.GList)checkSelf(l);
         System.Int32   a1;
         checkType(l, 2, out a1);
         self.RemoveChildToPoolAt(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.GList::RemoveChildToPoolAt