| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- //this source code was auto-generated by tolua#, do not modify it
- using System;
- using LuaInterface;
- public class DG_Tweening_EaseWrap
- {
- public static void Register(LuaState L)
- {
- L.BeginEnum(typeof(DG.Tweening.Ease));
- L.RegVar("Unset", get_Unset, null);
- L.RegVar("Linear", get_Linear, null);
- L.RegVar("InSine", get_InSine, null);
- L.RegVar("OutSine", get_OutSine, null);
- L.RegVar("InOutSine", get_InOutSine, null);
- L.RegVar("InQuad", get_InQuad, null);
- L.RegVar("OutQuad", get_OutQuad, null);
- L.RegVar("InOutQuad", get_InOutQuad, null);
- L.RegVar("InCubic", get_InCubic, null);
- L.RegVar("OutCubic", get_OutCubic, null);
- L.RegVar("InOutCubic", get_InOutCubic, null);
- L.RegVar("InQuart", get_InQuart, null);
- L.RegVar("OutQuart", get_OutQuart, null);
- L.RegVar("InOutQuart", get_InOutQuart, null);
- L.RegVar("InQuint", get_InQuint, null);
- L.RegVar("OutQuint", get_OutQuint, null);
- L.RegVar("InOutQuint", get_InOutQuint, null);
- L.RegVar("InExpo", get_InExpo, null);
- L.RegVar("OutExpo", get_OutExpo, null);
- L.RegVar("InOutExpo", get_InOutExpo, null);
- L.RegVar("InCirc", get_InCirc, null);
- L.RegVar("OutCirc", get_OutCirc, null);
- L.RegVar("InOutCirc", get_InOutCirc, null);
- L.RegVar("InElastic", get_InElastic, null);
- L.RegVar("OutElastic", get_OutElastic, null);
- L.RegVar("InOutElastic", get_InOutElastic, null);
- L.RegVar("InBack", get_InBack, null);
- L.RegVar("OutBack", get_OutBack, null);
- L.RegVar("InOutBack", get_InOutBack, null);
- L.RegVar("InBounce", get_InBounce, null);
- L.RegVar("OutBounce", get_OutBounce, null);
- L.RegVar("InOutBounce", get_InOutBounce, null);
- L.RegVar("Flash", get_Flash, null);
- L.RegVar("InFlash", get_InFlash, null);
- L.RegVar("OutFlash", get_OutFlash, null);
- L.RegVar("InOutFlash", get_InOutFlash, null);
- L.RegVar("INTERNAL_Zero", get_INTERNAL_Zero, null);
- L.RegVar("INTERNAL_Custom", get_INTERNAL_Custom, null);
- L.RegFunction("IntToEnum", IntToEnum);
- L.EndEnum();
- TypeTraits<DG.Tweening.Ease>.Check = CheckType;
- StackTraits<DG.Tweening.Ease>.Push = Push;
- }
- static void Push(IntPtr L, DG.Tweening.Ease arg)
- {
- ToLua.Push(L, arg);
- }
- static bool CheckType(IntPtr L, int pos)
- {
- return TypeChecker.CheckEnumType(typeof(DG.Tweening.Ease), L, pos);
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Unset(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.Unset);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Linear(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.Linear);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InSine(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InSine);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_OutSine(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.OutSine);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InOutSine(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InOutSine);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InQuad(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InQuad);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_OutQuad(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.OutQuad);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InOutQuad(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InOutQuad);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InCubic(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InCubic);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_OutCubic(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.OutCubic);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InOutCubic(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InOutCubic);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InQuart(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InQuart);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_OutQuart(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.OutQuart);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InOutQuart(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InOutQuart);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InQuint(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InQuint);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_OutQuint(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.OutQuint);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InOutQuint(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InOutQuint);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InExpo(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InExpo);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_OutExpo(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.OutExpo);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InOutExpo(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InOutExpo);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InCirc(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InCirc);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_OutCirc(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.OutCirc);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InOutCirc(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InOutCirc);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InElastic(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InElastic);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_OutElastic(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.OutElastic);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InOutElastic(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InOutElastic);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InBack(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InBack);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_OutBack(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.OutBack);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InOutBack(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InOutBack);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InBounce(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InBounce);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_OutBounce(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.OutBounce);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InOutBounce(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InOutBounce);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_Flash(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.Flash);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InFlash(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InFlash);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_OutFlash(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.OutFlash);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_InOutFlash(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.InOutFlash);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_INTERNAL_Zero(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.INTERNAL_Zero);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int get_INTERNAL_Custom(IntPtr L)
- {
- ToLua.Push(L, DG.Tweening.Ease.INTERNAL_Custom);
- return 1;
- }
- [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
- static int IntToEnum(IntPtr L)
- {
- int arg0 = (int)LuaDLL.lua_tonumber(L, 1);
- DG.Tweening.Ease o = (DG.Tweening.Ease)arg0;
- ToLua.Push(L, o);
- return 1;
- }
- }
|