| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- //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), "LoopScrollRectDragEventInherit");
- 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<LoopScrollRectDragEventInherit>(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<UnityEngine.UI.ScrollRect>(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");
- }
- }
- }
|