static int Add(IntPtr L) { try { int count = LuaDLL.lua_gettop(L); if (count == 3 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.Relations), typeof(FairyGUI.GObject), typeof(FairyGUI.RelationType))) { FairyGUI.Relations obj = (FairyGUI.Relations)ToLua.ToObject(L, 1); FairyGUI.GObject arg0 = (FairyGUI.GObject)ToLua.ToObject(L, 2); FairyGUI.RelationType arg1 = (FairyGUI.RelationType)ToLua.ToObject(L, 3); obj.Add(arg0, arg1); return(0); } else if (count == 4 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.Relations), typeof(FairyGUI.GObject), typeof(FairyGUI.RelationType), typeof(bool))) { FairyGUI.Relations obj = (FairyGUI.Relations)ToLua.ToObject(L, 1); FairyGUI.GObject arg0 = (FairyGUI.GObject)ToLua.ToObject(L, 2); FairyGUI.RelationType arg1 = (FairyGUI.RelationType)ToLua.ToObject(L, 3); bool arg2 = LuaDLL.lua_toboolean(L, 4); obj.Add(arg0, arg1, arg2); return(0); } else { return(LuaDLL.luaL_throw(L, "invalid arguments to method: FairyGUI.Relations.Add")); } } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }
static public int Add(IntPtr l) { try { int argc = LuaDLL.lua_gettop(l); if (argc == 3) { FairyGUI.Relations self = (FairyGUI.Relations)checkSelf(l); FairyGUI.GObject a1; checkType(l, 2, out a1); FairyGUI.RelationType a2; checkEnum(l, 3, out a2); self.Add(a1, a2); pushValue(l, true); return(1); } else if (argc == 4) { FairyGUI.Relations self = (FairyGUI.Relations)checkSelf(l); FairyGUI.GObject a1; checkType(l, 2, out a1); FairyGUI.RelationType a2; checkEnum(l, 3, out a2); System.Boolean a3; checkType(l, 4, out a3); self.Add(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)); } }