static int QPYX_DORestart_YXQP(IntPtr L_YXQP) { try { int QPYX_count_YXQP = LuaDLL.lua_gettop(L_YXQP); if (QPYX_count_YXQP == 1) { DG.Tweening.Core.ABSAnimationComponent QPYX_obj_YXQP = (DG.Tweening.Core.ABSAnimationComponent)ToLua.CheckObject <DG.Tweening.Core.ABSAnimationComponent>(L_YXQP, 1); QPYX_obj_YXQP.DORestart(); return(0); } else if (QPYX_count_YXQP == 2) { DG.Tweening.Core.ABSAnimationComponent QPYX_obj_YXQP = (DG.Tweening.Core.ABSAnimationComponent)ToLua.CheckObject <DG.Tweening.Core.ABSAnimationComponent>(L_YXQP, 1); bool QPYX_arg0_YXQP = LuaDLL.luaL_checkboolean(L_YXQP, 2); QPYX_obj_YXQP.DORestart(QPYX_arg0_YXQP); return(0); } else { return(LuaDLL.luaL_throw(L_YXQP, "invalid arguments to method: DG.Tweening.Core.ABSAnimationComponent.DORestart")); } } catch (Exception e_YXQP) { return(LuaDLL.toluaL_exception(L_YXQP, e_YXQP)); } }
static int DORestart(IntPtr L) { try { int count = LuaDLL.lua_gettop(L); if (count == 1) { DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)ToLua.CheckObject <DG.Tweening.Core.ABSAnimationComponent>(L, 1); obj.DORestart(); return(0); } else if (count == 2) { DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)ToLua.CheckObject <DG.Tweening.Core.ABSAnimationComponent>(L, 1); bool arg0 = LuaDLL.luaL_checkboolean(L, 2); obj.DORestart(arg0); return(0); } else { return(LuaDLL.luaL_throw(L, "invalid arguments to method: DG.Tweening.Core.ABSAnimationComponent.DORestart")); } } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }
static public int DORewind(IntPtr l) { try { DG.Tweening.Core.ABSAnimationComponent self = (DG.Tweening.Core.ABSAnimationComponent)checkSelf(l); self.DORewind(); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int get_tween(IntPtr l) { try { DG.Tweening.Core.ABSAnimationComponent self = (DG.Tweening.Core.ABSAnimationComponent)checkSelf(l); pushValue(l, true); pushValue(l, self.tween); return(2); } catch (Exception e) { return(error(l, e)); } }
static public int get_updateType(IntPtr l) { try { DG.Tweening.Core.ABSAnimationComponent self = (DG.Tweening.Core.ABSAnimationComponent)checkSelf(l); pushValue(l, true); pushEnum(l, (int)self.updateType); return(2); } catch (Exception e) { return(error(l, e)); } }
static int QPYX_DOTogglePause_YXQP(IntPtr L_YXQP) { try { ToLua.CheckArgsCount(L_YXQP, 1); DG.Tweening.Core.ABSAnimationComponent QPYX_obj_YXQP = (DG.Tweening.Core.ABSAnimationComponent)ToLua.CheckObject <DG.Tweening.Core.ABSAnimationComponent>(L_YXQP, 1); QPYX_obj_YXQP.DOTogglePause(); return(0); } catch (Exception e_YXQP) { return(LuaDLL.toluaL_exception(L_YXQP, e_YXQP)); } }
static public int set_tween(IntPtr l) { try { DG.Tweening.Core.ABSAnimationComponent self = (DG.Tweening.Core.ABSAnimationComponent)checkSelf(l); DG.Tweening.Tween v; checkType(l, 2, out v); self.tween = v; pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int set_onTweenCreated(IntPtr l) { try { DG.Tweening.Core.ABSAnimationComponent self = (DG.Tweening.Core.ABSAnimationComponent)checkSelf(l); UnityEngine.Events.UnityEvent v; checkType(l, 2, out v); self.onTweenCreated = v; pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int set_hasOnTweenCreated(IntPtr l) { try { DG.Tweening.Core.ABSAnimationComponent self = (DG.Tweening.Core.ABSAnimationComponent)checkSelf(l); System.Boolean v; checkType(l, 2, out v); self.hasOnTweenCreated = v; pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int DORestart(IntPtr l) { try { DG.Tweening.Core.ABSAnimationComponent self = (DG.Tweening.Core.ABSAnimationComponent)checkSelf(l); System.Boolean a1; checkType(l, 2, out a1); self.DORestart(a1); pushValue(l, true); return(1); } catch (Exception e) { return(error(l, e)); } }
static int DOPause(IntPtr L) { try { ToLua.CheckArgsCount(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)ToLua.CheckObject <DG.Tweening.Core.ABSAnimationComponent>(L, 1); obj.DOPause(); return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }
static int DORestart(IntPtr L) { try { ToLua.CheckArgsCount(L, 2); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)ToLua.CheckObject(L, 1, typeof(DG.Tweening.Core.ABSAnimationComponent)); bool arg0 = LuaDLL.luaL_checkboolean(L, 2); obj.DORestart(arg0); return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }
static int get_hasOnStepComplete(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)o; bool ret = obj.hasOnStepComplete; LuaDLL.lua_pushboolean(L, ret); return(1); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index hasOnStepComplete on a nil value" : e.Message)); } }
static int set_onComplete(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)o; UnityEngine.Events.UnityEvent arg0 = (UnityEngine.Events.UnityEvent)ToLua.CheckObject(L, 2, typeof(UnityEngine.Events.UnityEvent)); obj.onComplete = arg0; return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index onComplete on a nil value" : e.Message)); } }
static int set_onTweenCreated(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)o; UnityEngine.Events.UnityEvent arg0 = (UnityEngine.Events.UnityEvent)ToLua.CheckObject <UnityEngine.Events.UnityEvent>(L, 2); obj.onTweenCreated = arg0; return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e, o, "attempt to index onTweenCreated on a nil value")); } }
static int set_tween(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)o; DG.Tweening.Tween arg0 = (DG.Tweening.Tween)ToLua.CheckObject <DG.Tweening.Tween>(L, 2); obj.tween = arg0; return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e, o, "attempt to index tween on a nil value")); } }
static int set_updateType(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)o; DG.Tweening.UpdateType arg0 = (DG.Tweening.UpdateType)ToLua.CheckObject(L, 2, typeof(DG.Tweening.UpdateType)); obj.updateType = arg0; return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e, o, "attempt to index updateType on a nil value")); } }
static int set_hasOnTweenCreated(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)o; bool arg0 = LuaDLL.luaL_checkboolean(L, 2); obj.hasOnTweenCreated = arg0; return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e, o, "attempt to index hasOnTweenCreated on a nil value")); } }
static int get_onTweenCreated(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)o; UnityEngine.Events.UnityEvent ret = obj.onTweenCreated; ToLua.PushObject(L, ret); return(1); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e, o, "attempt to index onTweenCreated on a nil value")); } }
static int get_tween(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)o; DG.Tweening.Tween ret = obj.tween; ToLua.PushObject(L, ret); return(1); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e, o, "attempt to index tween on a nil value")); } }
static int get_updateType(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)o; DG.Tweening.UpdateType ret = obj.updateType; ToLua.Push(L, ret); return(1); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index updateType on a nil value" : e.Message)); } }
static int get_hasOnTweenCreated(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)o; bool ret = obj.hasOnTweenCreated; LuaDLL.lua_pushboolean(L, ret); return(1); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e, o, "attempt to index hasOnTweenCreated on a nil value")); } }
static int set_hasOnStepComplete(IntPtr L) { object o = null; try { o = ToLua.ToObject(L, 1); DG.Tweening.Core.ABSAnimationComponent obj = (DG.Tweening.Core.ABSAnimationComponent)o; bool arg0 = LuaDLL.luaL_checkboolean(L, 2); obj.hasOnStepComplete = arg0; return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e, o == null ? "attempt to index hasOnStepComplete on a nil value" : e.Message)); } }
static int QPYX_get_tween_YXQP(IntPtr L_YXQP) { object QPYX_o_YXQP = null; try { QPYX_o_YXQP = ToLua.ToObject(L_YXQP, 1); DG.Tweening.Core.ABSAnimationComponent QPYX_obj_YXQP = (DG.Tweening.Core.ABSAnimationComponent)QPYX_o_YXQP; DG.Tweening.Tween QPYX_ret_YXQP = QPYX_obj_YXQP.tween; ToLua.PushObject(L_YXQP, QPYX_ret_YXQP); return(1); } catch (Exception QPYX_e_YXQP) { return(LuaDLL.toluaL_exception(L_YXQP, QPYX_e_YXQP, QPYX_o_YXQP, "attempt to index tween on a nil value")); } }
static int QPYX_get_hasOnTweenCreated_YXQP(IntPtr L_YXQP) { object QPYX_o_YXQP = null; try { QPYX_o_YXQP = ToLua.ToObject(L_YXQP, 1); DG.Tweening.Core.ABSAnimationComponent QPYX_obj_YXQP = (DG.Tweening.Core.ABSAnimationComponent)QPYX_o_YXQP; bool QPYX_ret_YXQP = QPYX_obj_YXQP.hasOnTweenCreated; LuaDLL.lua_pushboolean(L_YXQP, QPYX_ret_YXQP); return(1); } catch (Exception QPYX_e_YXQP) { return(LuaDLL.toluaL_exception(L_YXQP, QPYX_e_YXQP, QPYX_o_YXQP, "attempt to index hasOnTweenCreated on a nil value")); } }
static int QPYX_set_tween_YXQP(IntPtr L_YXQP) { object QPYX_o_YXQP = null; try { QPYX_o_YXQP = ToLua.ToObject(L_YXQP, 1); DG.Tweening.Core.ABSAnimationComponent QPYX_obj_YXQP = (DG.Tweening.Core.ABSAnimationComponent)QPYX_o_YXQP; DG.Tweening.Tween QPYX_arg0_YXQP = (DG.Tweening.Tween)ToLua.CheckObject <DG.Tweening.Tween>(L_YXQP, 2); QPYX_obj_YXQP.tween = QPYX_arg0_YXQP; return(0); } catch (Exception QPYX_e_YXQP) { return(LuaDLL.toluaL_exception(L_YXQP, QPYX_e_YXQP, QPYX_o_YXQP, "attempt to index tween on a nil value")); } }
static int QPYX_set_onRewind_YXQP(IntPtr L_YXQP) { object QPYX_o_YXQP = null; try { QPYX_o_YXQP = ToLua.ToObject(L_YXQP, 1); DG.Tweening.Core.ABSAnimationComponent QPYX_obj_YXQP = (DG.Tweening.Core.ABSAnimationComponent)QPYX_o_YXQP; UnityEngine.Events.UnityEvent QPYX_arg0_YXQP = (UnityEngine.Events.UnityEvent)ToLua.CheckObject <UnityEngine.Events.UnityEvent>(L_YXQP, 2); QPYX_obj_YXQP.onRewind = QPYX_arg0_YXQP; return(0); } catch (Exception QPYX_e_YXQP) { return(LuaDLL.toluaL_exception(L_YXQP, QPYX_e_YXQP, QPYX_o_YXQP, "attempt to index onRewind on a nil value")); } }
static int QPYX_set_hasOnRewind_YXQP(IntPtr L_YXQP) { object QPYX_o_YXQP = null; try { QPYX_o_YXQP = ToLua.ToObject(L_YXQP, 1); DG.Tweening.Core.ABSAnimationComponent QPYX_obj_YXQP = (DG.Tweening.Core.ABSAnimationComponent)QPYX_o_YXQP; bool QPYX_arg0_YXQP = LuaDLL.luaL_checkboolean(L_YXQP, 2); QPYX_obj_YXQP.hasOnRewind = QPYX_arg0_YXQP; return(0); } catch (Exception QPYX_e_YXQP) { return(LuaDLL.toluaL_exception(L_YXQP, QPYX_e_YXQP, QPYX_o_YXQP, "attempt to index hasOnRewind on a nil value")); } }
static int QPYX_set_updateType_YXQP(IntPtr L_YXQP) { object QPYX_o_YXQP = null; try { QPYX_o_YXQP = ToLua.ToObject(L_YXQP, 1); DG.Tweening.Core.ABSAnimationComponent QPYX_obj_YXQP = (DG.Tweening.Core.ABSAnimationComponent)QPYX_o_YXQP; DG.Tweening.UpdateType QPYX_arg0_YXQP = (DG.Tweening.UpdateType)ToLua.CheckObject(L_YXQP, 2, typeof(DG.Tweening.UpdateType)); QPYX_obj_YXQP.updateType = QPYX_arg0_YXQP; return(0); } catch (Exception QPYX_e_YXQP) { return(LuaDLL.toluaL_exception(L_YXQP, QPYX_e_YXQP, QPYX_o_YXQP, "attempt to index updateType on a nil value")); } }
static int QPYX_get_onTweenCreated_YXQP(IntPtr L_YXQP) { object QPYX_o_YXQP = null; try { QPYX_o_YXQP = ToLua.ToObject(L_YXQP, 1); DG.Tweening.Core.ABSAnimationComponent QPYX_obj_YXQP = (DG.Tweening.Core.ABSAnimationComponent)QPYX_o_YXQP; UnityEngine.Events.UnityEvent QPYX_ret_YXQP = QPYX_obj_YXQP.onTweenCreated; ToLua.PushObject(L_YXQP, QPYX_ret_YXQP); return(1); } catch (Exception QPYX_e_YXQP) { return(LuaDLL.toluaL_exception(L_YXQP, QPYX_e_YXQP, QPYX_o_YXQP, "attempt to index onTweenCreated on a nil value")); } }