static int Stop(IntPtr L) { try { int count = LuaDLL.lua_gettop(L); if (count == 1) { DragonBones.Animation obj = (DragonBones.Animation)ToLua.CheckObject <DragonBones.Animation>(L, 1); obj.Stop(); return(0); } else if (count == 2) { DragonBones.Animation obj = (DragonBones.Animation)ToLua.CheckObject <DragonBones.Animation>(L, 1); string arg0 = ToLua.CheckString(L, 2); obj.Stop(arg0); return(0); } else { return(LuaDLL.luaL_throw(L, "invalid arguments to method: DragonBones.Animation.Stop")); } } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }
static int Stop(IntPtr L) { try { ToLua.CheckArgsCount(L, 2); DragonBones.Animation obj = (DragonBones.Animation)ToLua.CheckObject(L, 1, typeof(DragonBones.Animation)); string arg0 = ToLua.CheckString(L, 2); obj.Stop(arg0); return(0); } catch (Exception e) { return(LuaDLL.toluaL_exception(L, e)); } }