RemoveChild() public method

public RemoveChild ( DisplayObject child ) : DisplayObject
child DisplayObject
return DisplayObject
Example #1
0
    static int RemoveChild(IntPtr L)
    {
        try
        {
            int count = LuaDLL.lua_gettop(L);

            if (count == 2)
            {
                FairyGUI.Container     obj  = (FairyGUI.Container)ToLua.CheckObject <FairyGUI.Container>(L, 1);
                FairyGUI.DisplayObject arg0 = (FairyGUI.DisplayObject)ToLua.CheckObject <FairyGUI.DisplayObject>(L, 2);
                FairyGUI.DisplayObject o    = obj.RemoveChild(arg0);
                ToLua.PushObject(L, o);
                return(1);
            }
            else if (count == 3)
            {
                FairyGUI.Container     obj  = (FairyGUI.Container)ToLua.CheckObject <FairyGUI.Container>(L, 1);
                FairyGUI.DisplayObject arg0 = (FairyGUI.DisplayObject)ToLua.CheckObject <FairyGUI.DisplayObject>(L, 2);
                bool arg1 = LuaDLL.luaL_checkboolean(L, 3);
                FairyGUI.DisplayObject o = obj.RemoveChild(arg0, arg1);
                ToLua.PushObject(L, o);
                return(1);
            }
            else
            {
                return(LuaDLL.luaL_throw(L, "invalid arguments to method: FairyGUI.Container.RemoveChild"));
            }
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }
Example #2
0
 static public int RemoveChild(IntPtr l)
 {
     try {
         int argc = LuaDLL.lua_gettop(l);
         if (argc == 2)
         {
             FairyGUI.Container     self = (FairyGUI.Container)checkSelf(l);
             FairyGUI.DisplayObject a1;
             checkType(l, 2, out a1);
             var ret = self.RemoveChild(a1);
             pushValue(l, true);
             pushValue(l, ret);
             return(2);
         }
         else if (argc == 3)
         {
             FairyGUI.Container     self = (FairyGUI.Container)checkSelf(l);
             FairyGUI.DisplayObject a1;
             checkType(l, 2, out a1);
             System.Boolean a2;
             checkType(l, 3, out a2);
             var ret = self.RemoveChild(a1, a2);
             pushValue(l, true);
             pushValue(l, ret);
             return(2);
         }
         pushValue(l, false);
         LuaDLL.lua_pushstring(l, "No matched override function to call");
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #3
0
 private void ClearErrorState()
 {
     if (_errorSign != null)
     {
         _container.RemoveChild(_errorSign.displayObject);
         errorSignPool.ReturnObject(_errorSign);
         _errorSign = null;
     }
 }