public static Delegate UICamera_BoolDelegate(LuaFunction func) { if (func == null) { UICamera.BoolDelegate fn = delegate { }; return(fn); } UICamera.BoolDelegate d = (new UICamera_BoolDelegate_Event(func)).Call; return(d); }
public static Delegate UICamera_BoolDelegate(LuaFunction func) { UICamera.BoolDelegate d = (param0, param1) => { int top = func.BeginPCall(); IntPtr L = func.GetLuaState(); LuaScriptMgr.Push(L, param0); LuaScriptMgr.Push(L, param1); func.PCall(top, 2); func.EndPCall(top); }; return(d); }
static internal int checkDelegate(IntPtr l, int p, out UICamera.BoolDelegate ua) { int op = extractFunction(l, p); if (LuaDLL.lua_isnil(l, p)) { ua = null; return(op); } else if (LuaDLL.lua_isuserdata(l, p) == 1) { ua = (UICamera.BoolDelegate)checkObj(l, p); return(op); } LuaDelegate ld; checkType(l, -1, out ld); if (ld.d != null) { ua = (UICamera.BoolDelegate)ld.d; return(op); } LuaDLL.lua_pop(l, 1); l = LuaState.get(l).L; ua = (UnityEngine.GameObject a1, bool a2) => { int error = pushTry(l); pushValue(l, a1); pushValue(l, a2); ld.pcall(2, error); LuaDLL.lua_settop(l, error - 1); }; ld.d = ua; return(op); }