c1_unity/Assets/XLua/Gen/DG_Tweening_EaseFactoryWrap.cs
2023-04-03 11:04:31 +08:00

153 lines
4.7 KiB
C#

#if USE_UNI_LUA
using LuaAPI = UniLua.Lua;
using RealStatePtr = UniLua.ILuaState;
using LuaCSFunction = UniLua.CSharpFunctionDelegate;
#else
using LuaAPI = XLua.LuaDLL.Lua;
using RealStatePtr = System.IntPtr;
using LuaCSFunction = XLua.LuaDLL.lua_CSFunction;
#endif
using XLua;
using System.Collections.Generic;
namespace XLua.CSObjectWrap
{
using Utils = XLua.Utils;
public class DGTweeningEaseFactoryWrap
{
public static void __Register(RealStatePtr L)
{
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
System.Type type = typeof(DG.Tweening.EaseFactory);
Utils.BeginObjectRegister(type, L, translator, 0, 0, 0, 0);
Utils.EndObjectRegister(type, L, translator, null, null,
null, null, null);
Utils.BeginClassRegister(type, L, __CreateInstance, 2, 0, 0);
Utils.RegisterFunc(L, Utils.CLS_IDX, "StopMotion", _m_StopMotion_xlua_st_);
Utils.EndClassRegister(type, L, translator);
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int __CreateInstance(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
if(LuaAPI.lua_gettop(L) == 1)
{
var gen_ret = new DG.Tweening.EaseFactory();
translator.Push(L, gen_ret);
return 1;
}
}
catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return LuaAPI.luaL_error(L, "invalid arguments to DG.Tweening.EaseFactory constructor!");
}
[MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
static int _m_StopMotion_xlua_st_(RealStatePtr L)
{
try {
ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
int gen_param_count = LuaAPI.lua_gettop(L);
if(gen_param_count == 2&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 1)&& translator.Assignable<System.Nullable<DG.Tweening.Ease>>(L, 2))
{
int _motionFps = LuaAPI.xlua_tointeger(L, 1);
System.Nullable<DG.Tweening.Ease> _ease;translator.Get(L, 2, out _ease);
var gen_ret = DG.Tweening.EaseFactory.StopMotion( _motionFps, _ease );
translator.Push(L, gen_ret);
return 1;
}
if(gen_param_count == 1&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 1))
{
int _motionFps = LuaAPI.xlua_tointeger(L, 1);
var gen_ret = DG.Tweening.EaseFactory.StopMotion( _motionFps );
translator.Push(L, gen_ret);
return 1;
}
if(gen_param_count == 2&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 1)&& translator.Assignable<UnityEngine.AnimationCurve>(L, 2))
{
int _motionFps = LuaAPI.xlua_tointeger(L, 1);
UnityEngine.AnimationCurve _animCurve = (UnityEngine.AnimationCurve)translator.GetObject(L, 2, typeof(UnityEngine.AnimationCurve));
var gen_ret = DG.Tweening.EaseFactory.StopMotion( _motionFps, _animCurve );
translator.Push(L, gen_ret);
return 1;
}
if(gen_param_count == 2&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 1)&& translator.Assignable<DG.Tweening.EaseFunction>(L, 2))
{
int _motionFps = LuaAPI.xlua_tointeger(L, 1);
DG.Tweening.EaseFunction _customEase = translator.GetDelegate<DG.Tweening.EaseFunction>(L, 2);
var gen_ret = DG.Tweening.EaseFactory.StopMotion( _motionFps, _customEase );
translator.Push(L, gen_ret);
return 1;
}
} catch(System.Exception gen_e) {
return LuaAPI.luaL_error(L, "c# exception:" + gen_e);
}
return LuaAPI.luaL_error(L, "invalid arguments to DG.Tweening.EaseFactory.StopMotion!");
}
}
}