RemoveChildren() public method

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

            if (count == 1 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.Container)))
            {
                FairyGUI.Container obj = (FairyGUI.Container)ToLua.ToObject(L, 1);
                obj.RemoveChildren();
                return(0);
            }
            else if (count == 4 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.Container), typeof(int), typeof(int), typeof(bool)))
            {
                FairyGUI.Container obj = (FairyGUI.Container)ToLua.ToObject(L, 1);
                int  arg0 = (int)LuaDLL.lua_tonumber(L, 2);
                int  arg1 = (int)LuaDLL.lua_tonumber(L, 3);
                bool arg2 = LuaDLL.lua_toboolean(L, 4);
                obj.RemoveChildren(arg0, arg1, arg2);
                return(0);
            }
            else
            {
                return(LuaDLL.luaL_throw(L, "invalid arguments to method: FairyGUI.Container.RemoveChildren"));
            }
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }
Example #2
0
    static int RemoveChildren(IntPtr L)
    {
        try
        {
            int count = LuaDLL.lua_gettop(L);

            if (count == 1)
            {
                FairyGUI.Container obj = (FairyGUI.Container)ToLua.CheckObject <FairyGUI.Container>(L, 1);
                obj.RemoveChildren();
                return(0);
            }
            else if (count == 4)
            {
                FairyGUI.Container obj = (FairyGUI.Container)ToLua.CheckObject <FairyGUI.Container>(L, 1);
                int  arg0 = (int)LuaDLL.luaL_checknumber(L, 2);
                int  arg1 = (int)LuaDLL.luaL_checknumber(L, 3);
                bool arg2 = LuaDLL.luaL_checkboolean(L, 4);
                obj.RemoveChildren(arg0, arg1, arg2);
                return(0);
            }
            else
            {
                return(LuaDLL.luaL_throw(L, "invalid arguments to method: FairyGUI.Container.RemoveChildren"));
            }
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }
Example #3
0
 static public int RemoveChildren(IntPtr l)
 {
     try {
         int argc = LuaDLL.lua_gettop(l);
         if (argc == 1)
         {
             FairyGUI.Container self = (FairyGUI.Container)checkSelf(l);
             self.RemoveChildren();
             pushValue(l, true);
             return(1);
         }
         else if (argc == 4)
         {
             FairyGUI.Container self = (FairyGUI.Container)checkSelf(l);
             System.Int32       a1;
             checkType(l, 2, out a1);
             System.Int32 a2;
             checkType(l, 3, out a2);
             System.Boolean a3;
             checkType(l, 4, out a3);
             self.RemoveChildren(a1, a2, a3);
             pushValue(l, true);
             return(1);
         }
         pushValue(l, false);
         LuaDLL.lua_pushstring(l, "No matched override function to call");
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }