//this source code was auto-generated by tolua#, do not modify it using System; using LuaInterface; public class LoopScrollRectDragEventInheritWrap { public static void Register(LuaState L) { L.BeginClass(typeof(LoopScrollRectDragEventInherit), typeof(UnityEngine.MonoBehaviour)); L.RegFunction("GetInheritScrollRect", GetInheritScrollRect); L.RegFunction("__eq", op_Equality); L.RegFunction("__tostring", ToLua.op_ToString); L.RegVar("sr", get_sr, set_sr); L.EndClass(); } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int GetInheritScrollRect(IntPtr L) { try { ToLua.CheckArgsCount(L, 1); LoopScrollRectDragEventInherit obj = (LoopScrollRectDragEventInherit)ToLua.CheckObject(L, 1); UnityEngine.UI.ScrollRect o = obj.GetInheritScrollRect(); ToLua.Push(L, o); return 1; } catch (Exception e) { return LuaDLL.toluaL_exception(L, e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int op_Equality(IntPtr L) { try { ToLua.CheckArgsCount(L, 2); UnityEngine.Object arg0 = (UnityEngine.Object)ToLua.ToObject(L, 1); UnityEngine.Object arg1 = (UnityEngine.Object)ToLua.ToObject(L, 2); bool o = arg0 == arg1; LuaDLL.lua_pushboolean(L, o); return 1; } catch (Exception e) { return LuaDLL.toluaL_exception(L, e); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int get_sr(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); LoopScrollRectDragEventInherit obj = (LoopScrollRectDragEventInherit)o; UnityEngine.UI.ScrollRect ret = obj.sr; ToLua.Push(L, ret); return 1; } catch(Exception e) { return LuaDLL.toluaL_exception(L, e, o, "attempt to index sr on a nil value"); } } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static int set_sr(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); LoopScrollRectDragEventInherit obj = (LoopScrollRectDragEventInherit)o; UnityEngine.UI.ScrollRect arg0 = (UnityEngine.UI.ScrollRect)ToLua.CheckObject(L, 2); obj.sr = arg0; return 0; } catch(Exception e) { return LuaDLL.toluaL_exception(L, e, o, "attempt to index sr on a nil value"); } } }