static public int GetPersistentEventCount(IntPtr l) { try { #if DEBUG var method = System.Reflection.MethodBase.GetCurrentMethod(); string methodName = GetMethodName(method); #if UNITY_5_5_OR_NEWER UnityEngine.Profiling.Profiler.BeginSample(methodName); #else Profiler.BeginSample(methodName); #endif #endif UnityEngine.Events.UnityEventBase self = (UnityEngine.Events.UnityEventBase)checkSelf(l); var ret = self.GetPersistentEventCount(); pushValue(l, true); pushValue(l, ret); return(2); } catch (Exception e) { return(error(l, e)); } #if DEBUG finally { #if UNITY_5_5_OR_NEWER UnityEngine.Profiling.Profiler.EndSample(); #else Profiler.EndSample(); #endif } #endif }
public void Unmute(UnityEngine.Events.UnityEventBase ev) { int count = ev.GetPersistentEventCount(); for (int i = 0; i < count; i++) { ev.SetPersistentListenerState(i, UnityEngine.Events.UnityEventCallState.RuntimeOnly); } }
static int GetPersistentEventCount(IntPtr L) { LuaScriptMgr.CheckArgsCount(L, 1); UnityEngine.Events.UnityEventBase obj = (UnityEngine.Events.UnityEventBase)LuaScriptMgr.GetNetObjectSelf(L, 1, "UnityEngine.Events.UnityEventBase"); int o = obj.GetPersistentEventCount(); LuaScriptMgr.Push(L, o); return(1); }
static public int GetPersistentEventCount(IntPtr l) { try { UnityEngine.Events.UnityEventBase self = (UnityEngine.Events.UnityEventBase)checkSelf(l); var ret = self.GetPersistentEventCount(); pushValue(l, ret); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int GetPersistentEventCount(IntPtr l) { try{ UnityEngine.Events.UnityEventBase self = (UnityEngine.Events.UnityEventBase)checkSelf(l); System.Int32 ret = self.GetPersistentEventCount(); pushValue(l, ret); return(1); } catch (Exception e) { LuaDLL.luaL_error(l, e.ToString()); return(0); } }
static int QPYX_GetPersistentEventCount_YXQP(IntPtr L_YXQP) { try { ToLua.CheckArgsCount(L_YXQP, 1); UnityEngine.Events.UnityEventBase QPYX_obj_YXQP = (UnityEngine.Events.UnityEventBase)ToLua.CheckObject <UnityEngine.Events.UnityEventBase>(L_YXQP, 1); int QPYX_o_YXQP = QPYX_obj_YXQP.GetPersistentEventCount(); LuaDLL.lua_pushinteger(L_YXQP, QPYX_o_YXQP); return(1); } catch (Exception e_YXQP) { return(LuaDLL.toluaL_exception(L_YXQP, e_YXQP)); } }
static int GetPersistentEventCount(IntPtr L) { try { ToLua.CheckArgsCount(L, 1); UnityEngine.Events.UnityEventBase obj = (UnityEngine.Events.UnityEventBase)ToLua.CheckObject(L, 1, typeof(UnityEngine.Events.UnityEventBase)); int o = obj.GetPersistentEventCount(); LuaDLL.lua_pushinteger(L, o); return(1); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }