From 6a59783d88d407c3954571dcd2c0e675a1fb1d53 Mon Sep 17 00:00:00 2001 From: Julien Jorge Date: Tue, 25 Nov 2025 18:07:31 +0100 Subject: [PATCH] Allow to pass event code and touches to EventTouch constructor. --- core/base/EventTouch.cpp | 8 +- core/base/EventTouch.h | 18 +- .../lua-bindings/auto/axlua_base_auto.cpp | 3921 ++++++++--------- 3 files changed, 1944 insertions(+), 2003 deletions(-) diff --git a/core/base/EventTouch.cpp b/core/base/EventTouch.cpp index 31c93fed0a64..197d6742ccd1 100644 --- a/core/base/EventTouch.cpp +++ b/core/base/EventTouch.cpp @@ -26,6 +26,8 @@ #include "base/EventTouch.h" #include "base/Touch.h" +#include + namespace ax { @@ -34,4 +36,8 @@ EventTouch::EventTouch() : Event(Type::TOUCH) _touches.reserve(MAX_TOUCHES); } -} +EventTouch::EventTouch(EventCode eventCode, std::vector touches) + : Event(Type::TOUCH), _eventCode(eventCode), _touches(std::move(touches)) +{} + +} // namespace ax diff --git a/core/base/EventTouch.h b/core/base/EventTouch.h index 9ab70d5351a7..41872790a495 100644 --- a/core/base/EventTouch.h +++ b/core/base/EventTouch.h @@ -38,8 +38,6 @@ namespace ax class Touch; -#define TOUCH_PERF_DEBUG 1 - /** @class EventTouch * @brief Touch event. */ @@ -61,6 +59,7 @@ class AX_DLL EventTouch : public Event * Constructor. */ EventTouch(); + EventTouch(EventCode eventCode, std::vector touches); /** Get event code. * @@ -74,19 +73,6 @@ class AX_DLL EventTouch : public Event */ const std::vector& getTouches() const { return _touches; } -#if TOUCH_PERF_DEBUG - /** Set the event code. - * - * @param eventCode A given EventCode. - */ - void setEventCode(EventCode eventCode) { _eventCode = eventCode; }; - /** Set the touches - * - * @param touches A given touches vector. - */ - void setTouches(const std::vector& touches) { _touches = touches; }; -#endif - private: EventCode _eventCode; std::vector _touches; @@ -94,7 +80,7 @@ class AX_DLL EventTouch : public Event friend class RenderView; }; -} +} // namespace ax // end of base group /// @} diff --git a/extensions/scripting/lua-bindings/auto/axlua_base_auto.cpp b/extensions/scripting/lua-bindings/auto/axlua_base_auto.cpp index 1e96656b3622..be2c9c3c3dd6 100644 --- a/extensions/scripting/lua-bindings/auto/axlua_base_auto.cpp +++ b/extensions/scripting/lua-bindings/auto/axlua_base_auto.cpp @@ -34,7 +34,7 @@ int lua_ax_base_Object_retain(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -81,7 +81,7 @@ int lua_ax_base_Object_release(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -128,7 +128,7 @@ int lua_ax_base_Object_getReferenceCount(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -197,7 +197,7 @@ int lua_ax_base_EventListener_checkAvailable(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -244,7 +244,7 @@ int lua_ax_base_EventListener_clone(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -291,7 +291,7 @@ int lua_ax_base_EventListener_setEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -341,7 +341,7 @@ int lua_ax_base_EventListener_isEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -398,7 +398,7 @@ int lua_ax_base_EventListenerCustom_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -468,7 +468,7 @@ int lua_ax_base_ShaderCache_purge(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -515,7 +515,7 @@ int lua_ax_base_ShaderCache_newVertexShaderModule(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -565,7 +565,7 @@ int lua_ax_base_ShaderCache_newFragmentShaderModule(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -615,7 +615,7 @@ int lua_ax_base_ShaderCache_removeUnusedShader(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -755,7 +755,7 @@ int lua_ax_base_Texture2D_updateWithImage(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Image* arg0; ax::backend::PixelFormat arg1; @@ -772,7 +772,7 @@ int lua_ax_base_Texture2D_updateWithImage(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 3) + if (argc == 3) { ax::Image* arg0; ax::backend::PixelFormat arg1; @@ -828,7 +828,7 @@ int lua_ax_base_Texture2D_updateWithMipmaps(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 6) + if (argc == 6) { ax::_MipmapInfo* arg0; int arg1; @@ -858,7 +858,7 @@ int lua_ax_base_Texture2D_updateWithMipmaps(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 7) + if (argc == 7) { ax::_MipmapInfo* arg0; int arg1; @@ -891,7 +891,7 @@ int lua_ax_base_Texture2D_updateWithMipmaps(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 8) + if (argc == 8) { ax::_MipmapInfo* arg0; int arg1; @@ -963,7 +963,7 @@ int lua_ax_base_Texture2D_updateWithSubData(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 5) + if (argc == 5) { void* arg0; int arg1; @@ -990,7 +990,7 @@ int lua_ax_base_Texture2D_updateWithSubData(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 6) + if (argc == 6) { void* arg0; int arg1; @@ -1056,7 +1056,7 @@ int lua_ax_base_Texture2D_drawAtPoint(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Vec2 arg0; double arg1; @@ -1109,7 +1109,7 @@ int lua_ax_base_Texture2D_drawInRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Rect arg0; double arg1; @@ -1448,7 +1448,7 @@ int lua_ax_base_Texture2D_updateTextureDescriptor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::backend::TextureDescriptor arg0; @@ -1463,7 +1463,7 @@ int lua_ax_base_Texture2D_updateTextureDescriptor(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 2) + if (argc == 2) { ax::backend::TextureDescriptor arg0; bool arg1; @@ -1517,7 +1517,7 @@ int lua_ax_base_Texture2D_setRenderTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -1567,7 +1567,7 @@ int lua_ax_base_Texture2D_isRenderTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -1614,7 +1614,7 @@ int lua_ax_base_Texture2D_generateMipmap(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -1661,7 +1661,7 @@ int lua_ax_base_Texture2D_setAntiAliasTexParameters(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -1708,7 +1708,7 @@ int lua_ax_base_Texture2D_setAliasTexParameters(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -1755,7 +1755,7 @@ int lua_ax_base_Texture2D_getStringForFormat(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -1853,7 +1853,7 @@ int lua_ax_base_Texture2D_getContentSizeInPixels(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -1900,7 +1900,7 @@ int lua_ax_base_Texture2D_hasPremultipliedAlpha(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -1947,7 +1947,7 @@ int lua_ax_base_Texture2D_setPremultipliedAlpha(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -1997,7 +1997,7 @@ int lua_ax_base_Texture2D_hasMipmaps(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2044,7 +2044,7 @@ int lua_ax_base_Texture2D_getPixelFormat(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2091,7 +2091,7 @@ int lua_ax_base_Texture2D_getSamplerFlags(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2138,7 +2138,7 @@ int lua_ax_base_Texture2D_getPixelsWide(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2185,7 +2185,7 @@ int lua_ax_base_Texture2D_getPixelsHigh(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2232,7 +2232,7 @@ int lua_ax_base_Texture2D_getBackendTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2279,7 +2279,7 @@ int lua_ax_base_Texture2D_getMaxS(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2326,7 +2326,7 @@ int lua_ax_base_Texture2D_setMaxS(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -2376,7 +2376,7 @@ int lua_ax_base_Texture2D_getMaxT(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2423,7 +2423,7 @@ int lua_ax_base_Texture2D_setMaxT(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -2473,7 +2473,7 @@ int lua_ax_base_Texture2D_getContentSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2520,7 +2520,7 @@ int lua_ax_base_Texture2D_getPath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2624,7 +2624,7 @@ int lua_ax_base_Texture2D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2726,7 +2726,7 @@ int lua_ax_base_Touch_getLocation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2773,7 +2773,7 @@ int lua_ax_base_Touch_getPreviousLocation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2820,7 +2820,7 @@ int lua_ax_base_Touch_getStartLocation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2867,7 +2867,7 @@ int lua_ax_base_Touch_getDelta(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2914,7 +2914,7 @@ int lua_ax_base_Touch_getLocationInView(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -2961,7 +2961,7 @@ int lua_ax_base_Touch_getPreviousLocationInView(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3008,7 +3008,7 @@ int lua_ax_base_Touch_getStartLocationInView(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3134,7 +3134,7 @@ int lua_ax_base_Touch_getID(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3181,7 +3181,7 @@ int lua_ax_base_Touch_getCurrentForce(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3228,7 +3228,7 @@ int lua_ax_base_Touch_getMaxForce(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3262,7 +3262,7 @@ int lua_ax_base_Touch_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3343,7 +3343,7 @@ int lua_ax_base_Event_getType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3390,7 +3390,7 @@ int lua_ax_base_Event_stopPropagation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3437,7 +3437,7 @@ int lua_ax_base_Event_isStopped(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3484,7 +3484,7 @@ int lua_ax_base_Event_getCurrentTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3518,7 +3518,7 @@ int lua_ax_base_Event_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Event::Type arg0; @@ -3595,7 +3595,7 @@ int lua_ax_base_EventTouch_getEventCode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3616,56 +3616,6 @@ int lua_ax_base_EventTouch_getEventCode(lua_State* tolua_S) return 0; } -int lua_ax_base_EventTouch_setEventCode(lua_State* tolua_S) -{ - int argc = 0; - ax::EventTouch* cobj = nullptr; - bool ok = true; - -#if _AX_DEBUG >= 1 - tolua_Error tolua_err; -#endif - - -#if _AX_DEBUG >= 1 - if (!tolua_isusertype(tolua_S,1,"ax.EventTouch",0,&tolua_err)) goto tolua_lerror; -#endif - - cobj = (ax::EventTouch*)tolua_tousertype(tolua_S,1,0); - -#if _AX_DEBUG >= 1 - if (!cobj) - { - tolua_error(tolua_S,"invalid 'cobj' in function 'lua_ax_base_EventTouch_setEventCode'", nullptr); - return 0; - } -#endif - - argc = lua_gettop(tolua_S)-1; - if (argc == 1) - { - ax::EventTouch::EventCode arg0; - - ok &= luaval_to_int32(tolua_S, 2,(int *)&arg0, "ax.EventTouch:setEventCode"); - if(!ok) - { - tolua_error(tolua_S,"invalid arguments in function 'lua_ax_base_EventTouch_setEventCode'", nullptr); - return 0; - } - cobj->setEventCode(arg0); - lua_settop(tolua_S, 1); - return 1; - } - luaL_error(tolua_S, "%s has wrong number of arguments: %d, was expecting %d \n", "ax.EventTouch:setEventCode",argc, 1); - return 0; - -#if _AX_DEBUG >= 1 - tolua_lerror: - tolua_error(tolua_S,"#ferror in function 'lua_ax_base_EventTouch_setEventCode'.",&tolua_err); -#endif - - return 0; -} int lua_ax_base_EventTouch_constructor(lua_State* tolua_S) { int argc = 0; @@ -3679,7 +3629,7 @@ int lua_ax_base_EventTouch_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3717,7 +3667,6 @@ int lua_register_ax_base_EventTouch(lua_State* tolua_S) tolua_beginmodule(tolua_S,"EventTouch"); tolua_function(tolua_S,"new",lua_ax_base_EventTouch_constructor); tolua_function(tolua_S,"getEventCode",lua_ax_base_EventTouch_getEventCode); - tolua_function(tolua_S,"setEventCode",lua_ax_base_EventTouch_setEventCode); tolua_endmodule(tolua_S); auto typeName = typeid(ax::EventTouch).name(); // rtti is literal storage g_luaType[reinterpret_cast(typeName)] = "ax.EventTouch"; @@ -3751,7 +3700,7 @@ int lua_ax_base_EventKeyboard_isRepeat(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3785,7 +3734,7 @@ int lua_ax_base_EventKeyboard_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::EventKeyboard::KeyCode arg0; bool arg1; @@ -3805,7 +3754,7 @@ int lua_ax_base_EventKeyboard_constructor(lua_State* tolua_S) toluafix_pushusertype_object(tolua_S, ID, luaID, (void*)cobj,"ax.EventKeyboard"); return 1; } - if (argc == 3) + if (argc == 3) { ax::EventKeyboard::KeyCode arg0; bool arg1; @@ -3885,7 +3834,7 @@ int lua_ax_base_Component_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3932,7 +3881,7 @@ int lua_ax_base_Component_isEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -3979,7 +3928,7 @@ int lua_ax_base_Component_setEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -4029,7 +3978,7 @@ int lua_ax_base_Component_getName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -4076,7 +4025,7 @@ int lua_ax_base_Component_setName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -4126,7 +4075,7 @@ int lua_ax_base_Component_getOwner(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -4173,7 +4122,7 @@ int lua_ax_base_Component_setOwner(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -4223,7 +4172,7 @@ int lua_ax_base_Component_update(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -4273,7 +4222,7 @@ int lua_ax_base_Component_onAdd(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -4320,7 +4269,7 @@ int lua_ax_base_Component_onRemove(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -4431,7 +4380,7 @@ int lua_ax_base_Node_getDescription(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -4478,7 +4427,7 @@ int lua_ax_base_Node_setLocalZOrder(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -4528,7 +4477,7 @@ int lua_ax_base_Node_updateOrderOfArrival(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -4575,7 +4524,7 @@ int lua_ax_base_Node_getLocalZOrder(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -4622,7 +4571,7 @@ int lua_ax_base_Node_setGlobalZOrder(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -4672,7 +4621,7 @@ int lua_ax_base_Node_getGlobalZOrder(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -4719,7 +4668,7 @@ int lua_ax_base_Node_setScaleX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -4769,7 +4718,7 @@ int lua_ax_base_Node_getScaleX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -4816,7 +4765,7 @@ int lua_ax_base_Node_setScaleY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -4866,7 +4815,7 @@ int lua_ax_base_Node_getScaleY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -4913,7 +4862,7 @@ int lua_ax_base_Node_setScaleZ(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -4963,7 +4912,7 @@ int lua_ax_base_Node_getScaleZ(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -5069,7 +5018,7 @@ int lua_ax_base_Node_getScale(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -5175,7 +5124,7 @@ int lua_ax_base_Node_setPositionNormalized(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -5225,7 +5174,7 @@ int lua_ax_base_Node_setNormalizedPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -5275,7 +5224,7 @@ int lua_ax_base_Node_getPositionNormalized(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -5322,7 +5271,7 @@ int lua_ax_base_Node_getNormalizedPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -5369,7 +5318,7 @@ int lua_ax_base_Node_setPositionX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -5419,7 +5368,7 @@ int lua_ax_base_Node_getPositionX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -5466,7 +5415,7 @@ int lua_ax_base_Node_setPositionY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -5516,7 +5465,7 @@ int lua_ax_base_Node_getPositionY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -5563,7 +5512,7 @@ int lua_ax_base_Node_setPosition3D(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec3 arg0; @@ -5613,7 +5562,7 @@ int lua_ax_base_Node_getPosition3D(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -5660,7 +5609,7 @@ int lua_ax_base_Node_setPositionZ(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -5710,7 +5659,7 @@ int lua_ax_base_Node_getPositionZ(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -5757,7 +5706,7 @@ int lua_ax_base_Node_setSkewX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -5807,7 +5756,7 @@ int lua_ax_base_Node_getSkewX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -5854,7 +5803,7 @@ int lua_ax_base_Node_setSkewY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -5904,7 +5853,7 @@ int lua_ax_base_Node_getSkewY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -5951,7 +5900,7 @@ int lua_ax_base_Node_getAnchorPoint(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -5998,7 +5947,7 @@ int lua_ax_base_Node_getAnchorPointInPoints(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -6045,7 +5994,7 @@ int lua_ax_base_Node_getContentSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -6092,7 +6041,7 @@ int lua_ax_base_Node_hitTest(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -6142,7 +6091,7 @@ int lua_ax_base_Node_setVisible(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -6192,7 +6141,7 @@ int lua_ax_base_Node_isVisible(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -6239,7 +6188,7 @@ int lua_ax_base_Node_setRotation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -6289,7 +6238,7 @@ int lua_ax_base_Node_getRotation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -6336,7 +6285,7 @@ int lua_ax_base_Node_setRotation3D(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec3 arg0; @@ -6386,7 +6335,7 @@ int lua_ax_base_Node_getRotation3D(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -6433,7 +6382,7 @@ int lua_ax_base_Node_setRotationSkewX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -6483,7 +6432,7 @@ int lua_ax_base_Node_getRotationSkewX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -6530,7 +6479,7 @@ int lua_ax_base_Node_setRotationSkewY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -6580,7 +6529,7 @@ int lua_ax_base_Node_getRotationSkewY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -6627,7 +6576,7 @@ int lua_ax_base_Node_setIgnoreAnchorPointForPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -6677,7 +6626,7 @@ int lua_ax_base_Node_isIgnoreAnchorPointForPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -6823,7 +6772,7 @@ int lua_ax_base_Node_getChildByTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -6873,7 +6822,7 @@ int lua_ax_base_Node_getChildByName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -6970,7 +6919,7 @@ int lua_ax_base_Node_getChildrenCount(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -7017,7 +6966,7 @@ int lua_ax_base_Node_setParent(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -7165,7 +7114,7 @@ int lua_ax_base_Node_removeChild(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -7179,7 +7128,7 @@ int lua_ax_base_Node_removeChild(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { ax::Node* arg0; bool arg1; @@ -7232,7 +7181,7 @@ int lua_ax_base_Node_removeChildByTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -7246,7 +7195,7 @@ int lua_ax_base_Node_removeChildByTag(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { int arg0; bool arg1; @@ -7299,7 +7248,7 @@ int lua_ax_base_Node_removeChildByName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -7313,7 +7262,7 @@ int lua_ax_base_Node_removeChildByName(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { std::string_view arg0; bool arg1; @@ -7417,7 +7366,7 @@ int lua_ax_base_Node_reorderChild(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Node* arg0; int arg1; @@ -7470,7 +7419,7 @@ int lua_ax_base_Node_sortAllChildren(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -7517,7 +7466,7 @@ int lua_ax_base_Node_getTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -7564,7 +7513,7 @@ int lua_ax_base_Node_setTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -7614,7 +7563,7 @@ int lua_ax_base_Node_getName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -7661,7 +7610,7 @@ int lua_ax_base_Node_setName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -7711,7 +7660,7 @@ int lua_ax_base_Node_setUserObject(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Object* arg0; @@ -7761,7 +7710,7 @@ int lua_ax_base_Node_isRunning(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -7808,7 +7757,7 @@ int lua_ax_base_Node_cleanup(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -7973,7 +7922,7 @@ int lua_ax_base_Node_getScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -8020,7 +7969,7 @@ int lua_ax_base_Node_getBoundingBox(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -8067,7 +8016,7 @@ int lua_ax_base_Node_setEventDispatcher(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::EventDispatcher* arg0; @@ -8117,7 +8066,7 @@ int lua_ax_base_Node_getEventDispatcher(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -8164,7 +8113,7 @@ int lua_ax_base_Node_setActionManager(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionManager* arg0; @@ -8261,7 +8210,7 @@ int lua_ax_base_Node_runAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Action* arg0; @@ -8311,7 +8260,7 @@ int lua_ax_base_Node_stopAllActions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -8358,7 +8307,7 @@ int lua_ax_base_Node_stopAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Action* arg0; @@ -8408,7 +8357,7 @@ int lua_ax_base_Node_stopActionByTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -8458,7 +8407,7 @@ int lua_ax_base_Node_stopAllActionsByTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -8508,7 +8457,7 @@ int lua_ax_base_Node_stopActionsByFlags(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { unsigned int arg0; @@ -8558,7 +8507,7 @@ int lua_ax_base_Node_getActionByTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -8608,7 +8557,7 @@ int lua_ax_base_Node_getNumberOfRunningActions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -8655,7 +8604,7 @@ int lua_ax_base_Node_getNumberOfRunningActionsByTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -8705,7 +8654,7 @@ int lua_ax_base_Node_setScheduler(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Scheduler* arg0; @@ -8802,7 +8751,7 @@ int lua_ax_base_Node_isScheduled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -8852,7 +8801,7 @@ int lua_ax_base_Node_resume(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -8899,7 +8848,7 @@ int lua_ax_base_Node_pause(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -8946,7 +8895,7 @@ int lua_ax_base_Node_update(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -8996,7 +8945,7 @@ int lua_ax_base_Node_updateTransform(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -9145,7 +9094,7 @@ int lua_ax_base_Node_setNodeToParentTransform(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Mat4 arg0; @@ -9195,7 +9144,7 @@ int lua_ax_base_Node_getParentToNodeTransform(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -9242,7 +9191,7 @@ int lua_ax_base_Node_getParentToNodeAffineTransform(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -9289,7 +9238,7 @@ int lua_ax_base_Node_getNodeToWorldTransform(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -9336,7 +9285,7 @@ int lua_ax_base_Node_getNodeToWorldAffineTransform(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -9383,7 +9332,7 @@ int lua_ax_base_Node_getWorldToNodeTransform(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -9430,7 +9379,7 @@ int lua_ax_base_Node_getWorldToNodeAffineTransform(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -9477,7 +9426,7 @@ int lua_ax_base_Node_convertToNodeSpace(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -9527,7 +9476,7 @@ int lua_ax_base_Node_convertToWorldSpace(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -9577,7 +9526,7 @@ int lua_ax_base_Node_convertToNodeSpaceAR(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -9627,7 +9576,7 @@ int lua_ax_base_Node_convertToWorldSpaceAR(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -9677,7 +9626,7 @@ int lua_ax_base_Node_convertTouchToNodeSpace(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Touch* arg0; @@ -9727,7 +9676,7 @@ int lua_ax_base_Node_convertTouchToNodeSpaceAR(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Touch* arg0; @@ -9777,7 +9726,7 @@ int lua_ax_base_Node_getWorldPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -9824,7 +9773,7 @@ int lua_ax_base_Node_setWorldPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -9874,7 +9823,7 @@ int lua_ax_base_Node_getComponent(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -9924,7 +9873,7 @@ int lua_ax_base_Node_addComponent(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Component* arg0; @@ -10029,7 +9978,7 @@ int lua_ax_base_Node_removeAllComponents(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -10076,7 +10025,7 @@ int lua_ax_base_Node_getOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -10123,7 +10072,7 @@ int lua_ax_base_Node_getDisplayedOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -10170,7 +10119,7 @@ int lua_ax_base_Node_setOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { uint16_t arg0; @@ -10220,7 +10169,7 @@ int lua_ax_base_Node_updateDisplayedOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { uint16_t arg0; @@ -10270,7 +10219,7 @@ int lua_ax_base_Node_isCascadeOpacityEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -10317,7 +10266,7 @@ int lua_ax_base_Node_setCascadeOpacityEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -10367,7 +10316,7 @@ int lua_ax_base_Node_getColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -10414,7 +10363,7 @@ int lua_ax_base_Node_getDisplayedColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -10461,7 +10410,7 @@ int lua_ax_base_Node_setColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color3B arg0; @@ -10511,7 +10460,7 @@ int lua_ax_base_Node_updateDisplayedColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color3B arg0; @@ -10561,7 +10510,7 @@ int lua_ax_base_Node_isCascadeColorEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -10608,7 +10557,7 @@ int lua_ax_base_Node_setCascadeColorEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -10658,7 +10607,7 @@ int lua_ax_base_Node_setOpacityModifyRGB(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -10708,7 +10657,7 @@ int lua_ax_base_Node_isOpacityModifyRGB(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -10755,7 +10704,7 @@ int lua_ax_base_Node_setOnEnterCallback(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::function arg0; @@ -10809,7 +10758,7 @@ int lua_ax_base_Node_setOnExitCallback(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::function arg0; @@ -10863,7 +10812,7 @@ int lua_ax_base_Node_setOnEnterTransitionDidFinishCallback(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::function arg0; @@ -10917,7 +10866,7 @@ int lua_ax_base_Node_getOnEnterTransitionDidFinishCallback(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -10964,7 +10913,7 @@ int lua_ax_base_Node_setOnExitTransitionDidStartCallback(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::function arg0; @@ -11018,7 +10967,7 @@ int lua_ax_base_Node_getOnExitTransitionDidStartCallback(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -11065,7 +11014,7 @@ int lua_ax_base_Node_getCameraMask(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -11112,7 +11061,7 @@ int lua_ax_base_Node_setCameraMask(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { unsigned short arg0; @@ -11126,7 +11075,7 @@ int lua_ax_base_Node_setCameraMask(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { unsigned short arg0; bool arg1; @@ -11179,7 +11128,7 @@ int lua_ax_base_Node_applyMaskOnEnter(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -11300,7 +11249,7 @@ int lua_ax_base_Node_setProgramStateWithRegistry(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { unsigned int arg0; ax::Texture2D* arg1; @@ -11353,7 +11302,7 @@ int lua_ax_base_Node_setProgramStateByProgramId(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { unsigned long long arg0; @@ -11403,7 +11352,7 @@ int lua_ax_base_Node_getProgramState(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -11450,7 +11399,7 @@ int lua_ax_base_Node_updateProgramStateTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -11500,7 +11449,7 @@ int lua_ax_base_Node_resetChild(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Node* arg0; bool arg1; @@ -11553,7 +11502,7 @@ int lua_ax_base_Node_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -11600,7 +11549,7 @@ int lua_ax_base_Node_initLayer(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -11647,7 +11596,7 @@ int lua_ax_base_Node_setPhysicsBody(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::PhysicsBody* arg0; @@ -11697,7 +11646,7 @@ int lua_ax_base_Node_getPhysicsBody(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -11799,7 +11748,7 @@ int lua_ax_base_Node_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12017,7 +11966,7 @@ int lua_ax_base_Scene_getDefaultCamera(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12064,7 +12013,7 @@ int lua_ax_base_Scene_render(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Renderer* arg0; ax::Mat4 arg1; @@ -12081,7 +12030,7 @@ int lua_ax_base_Scene_render(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 3) + if (argc == 3) { ax::Renderer* arg0; ax::Mat4 arg1; @@ -12137,7 +12086,7 @@ int lua_ax_base_Scene_initWithSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -12187,7 +12136,7 @@ int lua_ax_base_Scene_setCameraOrderDirty(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12234,7 +12183,7 @@ int lua_ax_base_Scene_onProjectionChanged(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::EventCustom* arg0; @@ -12284,7 +12233,7 @@ int lua_ax_base_Scene_initWithPhysics(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12331,7 +12280,7 @@ int lua_ax_base_Scene_initPhysicsWorld(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12378,7 +12327,7 @@ int lua_ax_base_Scene_fixedUpdate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -12428,7 +12377,7 @@ int lua_ax_base_Scene_stepPhysicsAndNavigation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -12569,7 +12518,7 @@ int lua_ax_base_Scene_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12651,7 +12600,7 @@ int lua_ax_base_RenderView_end(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12698,7 +12647,7 @@ int lua_ax_base_RenderView_isGfxContextReady(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12745,7 +12694,7 @@ int lua_ax_base_RenderView_swapBuffers(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12792,7 +12741,7 @@ int lua_ax_base_RenderView_setIMEKeyboardState(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -12842,7 +12791,7 @@ int lua_ax_base_RenderView_windowShouldClose(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12889,7 +12838,7 @@ int lua_ax_base_RenderView_pollEvents(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12936,7 +12885,7 @@ int lua_ax_base_RenderView_getFrameSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -12983,7 +12932,7 @@ int lua_ax_base_RenderView_setFrameSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; double arg1; @@ -13036,7 +12985,7 @@ int lua_ax_base_RenderView_setFrameZoomFactor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -13086,7 +13035,7 @@ int lua_ax_base_RenderView_getFrameZoomFactor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -13133,7 +13082,7 @@ int lua_ax_base_RenderView_setCursorVisible(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -13183,7 +13132,7 @@ int lua_ax_base_RenderView_getRetinaFactor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -13230,7 +13179,7 @@ int lua_ax_base_RenderView_setContentScaleFactor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -13280,7 +13229,7 @@ int lua_ax_base_RenderView_getContentScaleFactor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -13327,7 +13276,7 @@ int lua_ax_base_RenderView_isRetinaDisplay(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -13374,7 +13323,7 @@ int lua_ax_base_RenderView_getVisibleSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -13421,7 +13370,7 @@ int lua_ax_base_RenderView_getVisibleOrigin(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -13468,7 +13417,7 @@ int lua_ax_base_RenderView_getVisibleRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -13515,7 +13464,7 @@ int lua_ax_base_RenderView_getSafeAreaRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -13562,7 +13511,7 @@ int lua_ax_base_RenderView_setDesignResolutionSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { double arg0; double arg1; @@ -13618,7 +13567,7 @@ int lua_ax_base_RenderView_getDesignResolutionSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -13665,7 +13614,7 @@ int lua_ax_base_RenderView_setViewPortInPoints(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; double arg1; @@ -13724,7 +13673,7 @@ int lua_ax_base_RenderView_setScissorInPoints(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; double arg1; @@ -13783,7 +13732,7 @@ int lua_ax_base_RenderView_isScissorEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -13830,7 +13779,7 @@ int lua_ax_base_RenderView_getScissorRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -13877,7 +13826,7 @@ int lua_ax_base_RenderView_setViewName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -13927,7 +13876,7 @@ int lua_ax_base_RenderView_getViewName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14029,7 +13978,7 @@ int lua_ax_base_RenderView_setDefaultIcon(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14076,7 +14025,7 @@ int lua_ax_base_RenderView_getViewPortRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14123,7 +14072,7 @@ int lua_ax_base_RenderView_getScaleX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14170,7 +14119,7 @@ int lua_ax_base_RenderView_getScaleY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14217,7 +14166,7 @@ int lua_ax_base_RenderView_getResolutionPolicy(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14264,7 +14213,7 @@ int lua_ax_base_RenderView_renderScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Scene* arg0; ax::Renderer* arg1; @@ -14317,7 +14266,7 @@ int lua_ax_base_RenderView_setInteractive(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -14494,7 +14443,7 @@ int lua_ax_base_Director_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14541,7 +14490,7 @@ int lua_ax_base_Director_getRunningScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14588,7 +14537,7 @@ int lua_ax_base_Director_getNextScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14635,7 +14584,7 @@ int lua_ax_base_Director_getAnimationInterval(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14682,7 +14631,7 @@ int lua_ax_base_Director_setAnimationInterval(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -14732,7 +14681,7 @@ int lua_ax_base_Director_isStatsDisplay(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14779,7 +14728,7 @@ int lua_ax_base_Director_setStatsDisplay(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -14829,7 +14778,7 @@ int lua_ax_base_Director_getSecondsPerFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14876,7 +14825,7 @@ int lua_ax_base_Director_setStatsAnchor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14887,7 +14836,7 @@ int lua_ax_base_Director_setStatsAnchor(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 1) + if (argc == 1) { ax::AnchorPreset arg0; @@ -14937,7 +14886,7 @@ int lua_ax_base_Director_getRenderView(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -14984,7 +14933,7 @@ int lua_ax_base_Director_setRenderView(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::RenderView* arg0; @@ -15034,7 +14983,7 @@ int lua_ax_base_Director_getTextureCache(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15081,7 +15030,7 @@ int lua_ax_base_Director_isNextDeltaTimeZero(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15128,7 +15077,7 @@ int lua_ax_base_Director_setNextDeltaTimeZero(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -15178,7 +15127,7 @@ int lua_ax_base_Director_isPaused(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15225,7 +15174,7 @@ int lua_ax_base_Director_getTotalFrames(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15272,7 +15221,7 @@ int lua_ax_base_Director_setProjection(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Director::Projection arg0; @@ -15322,7 +15271,7 @@ int lua_ax_base_Director_setViewport(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15369,7 +15318,7 @@ int lua_ax_base_Director_isSendCleanupToScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15416,7 +15365,7 @@ int lua_ax_base_Director_getNotificationNode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15463,7 +15412,7 @@ int lua_ax_base_Director_setNotificationNode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -15513,7 +15462,7 @@ int lua_ax_base_Director_getWinSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15560,7 +15509,7 @@ int lua_ax_base_Director_getWinSizeInPixels(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15607,7 +15556,7 @@ int lua_ax_base_Director_getVisibleSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15654,7 +15603,7 @@ int lua_ax_base_Director_getVisibleOrigin(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15701,7 +15650,7 @@ int lua_ax_base_Director_getSafeAreaRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15748,7 +15697,7 @@ int lua_ax_base_Director_convertToGL(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -15798,7 +15747,7 @@ int lua_ax_base_Director_convertToUI(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -15848,7 +15797,7 @@ int lua_ax_base_Director_getZEye(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -15895,7 +15844,7 @@ int lua_ax_base_Director_runWithScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Scene* arg0; @@ -15945,7 +15894,7 @@ int lua_ax_base_Director_pushScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Scene* arg0; @@ -15995,7 +15944,7 @@ int lua_ax_base_Director_popScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16042,7 +15991,7 @@ int lua_ax_base_Director_popToRootScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16089,7 +16038,7 @@ int lua_ax_base_Director_popToSceneStackLevel(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -16139,7 +16088,7 @@ int lua_ax_base_Director_replaceScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Scene* arg0; @@ -16189,7 +16138,7 @@ int lua_ax_base_Director_popPreviousSceneOut(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16236,7 +16185,7 @@ int lua_ax_base_Director_end(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16283,7 +16232,7 @@ int lua_ax_base_Director_pause(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16330,7 +16279,7 @@ int lua_ax_base_Director_resume(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16377,7 +16326,7 @@ int lua_ax_base_Director_restart(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16424,7 +16373,7 @@ int lua_ax_base_Director_stopAnimation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16471,7 +16420,7 @@ int lua_ax_base_Director_startAnimation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16518,7 +16467,7 @@ int lua_ax_base_Director_drawScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16565,7 +16514,7 @@ int lua_ax_base_Director_purgeCachedData(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16612,7 +16561,7 @@ int lua_ax_base_Director_setDefaultValues(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16659,7 +16608,7 @@ int lua_ax_base_Director_setRenderDefaults(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16706,7 +16655,7 @@ int lua_ax_base_Director_setClearColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color4F arg0; @@ -16807,7 +16756,7 @@ int lua_ax_base_Director_setContentScaleFactor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -16857,7 +16806,7 @@ int lua_ax_base_Director_getContentScaleFactor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16904,7 +16853,7 @@ int lua_ax_base_Director_getScheduler(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -16951,7 +16900,7 @@ int lua_ax_base_Director_setScheduler(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Scheduler* arg0; @@ -17001,7 +16950,7 @@ int lua_ax_base_Director_getActionManager(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -17048,7 +16997,7 @@ int lua_ax_base_Director_setActionManager(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionManager* arg0; @@ -17098,7 +17047,7 @@ int lua_ax_base_Director_getEventDispatcher(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -17145,7 +17094,7 @@ int lua_ax_base_Director_setEventDispatcher(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::EventDispatcher* arg0; @@ -17195,7 +17144,7 @@ int lua_ax_base_Director_getRenderer(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -17242,7 +17191,7 @@ int lua_ax_base_Director_getDeltaTime(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -17289,7 +17238,7 @@ int lua_ax_base_Director_getFrameRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -17336,7 +17285,7 @@ int lua_ax_base_Director_pushMatrix(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::MATRIX_STACK_TYPE arg0; @@ -17386,7 +17335,7 @@ int lua_ax_base_Director_popMatrix(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::MATRIX_STACK_TYPE arg0; @@ -17436,7 +17385,7 @@ int lua_ax_base_Director_loadIdentityMatrix(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::MATRIX_STACK_TYPE arg0; @@ -17486,7 +17435,7 @@ int lua_ax_base_Director_loadMatrix(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::MATRIX_STACK_TYPE arg0; ax::Mat4 arg1; @@ -17539,7 +17488,7 @@ int lua_ax_base_Director_multiplyMatrix(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::MATRIX_STACK_TYPE arg0; ax::Mat4 arg1; @@ -17592,7 +17541,7 @@ int lua_ax_base_Director_getMatrix(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::MATRIX_STACK_TYPE arg0; @@ -17642,7 +17591,7 @@ int lua_ax_base_Director_resetMatrixStack(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -17689,7 +17638,7 @@ int lua_ax_base_Director_getAxmolThreadId(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -17736,7 +17685,7 @@ int lua_ax_base_Director_setChildrenIndexerEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -17786,7 +17735,7 @@ int lua_ax_base_Director_isChildrenIndexerEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -17833,7 +17782,7 @@ int lua_ax_base_Director_isValid(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18039,7 +17988,7 @@ int lua_ax_base_Timer_setupTimerWithInterval(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { double arg0; unsigned int arg1; @@ -18095,7 +18044,7 @@ int lua_ax_base_Timer_setAborted(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18142,7 +18091,7 @@ int lua_ax_base_Timer_isAborted(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18189,7 +18138,7 @@ int lua_ax_base_Timer_isExhausted(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18236,7 +18185,7 @@ int lua_ax_base_Timer_trigger(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -18286,7 +18235,7 @@ int lua_ax_base_Timer_cancel(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18333,7 +18282,7 @@ int lua_ax_base_Timer_update(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -18409,7 +18358,7 @@ int lua_ax_base_Scheduler_getTimeScale(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18456,7 +18405,7 @@ int lua_ax_base_Scheduler_setTimeScale(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -18506,7 +18455,7 @@ int lua_ax_base_Scheduler_runOnAxmolThread(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::function arg0; @@ -18560,7 +18509,7 @@ int lua_ax_base_Scheduler_removeAllPendingActions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18594,7 +18543,7 @@ int lua_ax_base_Scheduler_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18668,7 +18617,7 @@ int lua_ax_base_Action_clone(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18715,7 +18664,7 @@ int lua_ax_base_Action_reverse(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18762,7 +18711,7 @@ int lua_ax_base_Action_isDone(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18809,7 +18758,7 @@ int lua_ax_base_Action_startWithTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -18859,7 +18808,7 @@ int lua_ax_base_Action_stop(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -18906,7 +18855,7 @@ int lua_ax_base_Action_step(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -18956,7 +18905,7 @@ int lua_ax_base_Action_update(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -19006,7 +18955,7 @@ int lua_ax_base_Action_getTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -19053,7 +19002,7 @@ int lua_ax_base_Action_setTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -19103,7 +19052,7 @@ int lua_ax_base_Action_getOriginalTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -19150,7 +19099,7 @@ int lua_ax_base_Action_setOriginalTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -19200,7 +19149,7 @@ int lua_ax_base_Action_getTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -19247,7 +19196,7 @@ int lua_ax_base_Action_setTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -19297,7 +19246,7 @@ int lua_ax_base_Action_getFlags(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -19344,7 +19293,7 @@ int lua_ax_base_Action_setFlags(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { unsigned int arg0; @@ -19428,7 +19377,7 @@ int lua_ax_base_FiniteTimeAction_getDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -19475,7 +19424,7 @@ int lua_ax_base_FiniteTimeAction_setDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -19546,7 +19495,7 @@ int lua_ax_base_Speed_getSpeed(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -19593,7 +19542,7 @@ int lua_ax_base_Speed_setSpeed(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -19643,7 +19592,7 @@ int lua_ax_base_Speed_setInnerAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -19693,7 +19642,7 @@ int lua_ax_base_Speed_getInnerAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -19740,7 +19689,7 @@ int lua_ax_base_Speed_initWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::ActionInterval* arg0; double arg1; @@ -19818,7 +19767,7 @@ int lua_ax_base_Speed_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -19894,7 +19843,7 @@ int lua_ax_base_Follow_isBoundarySet(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -19941,7 +19890,7 @@ int lua_ax_base_Follow_setBoundarySet(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -19991,7 +19940,7 @@ int lua_ax_base_Follow_initWithTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -20005,7 +19954,7 @@ int lua_ax_base_Follow_initWithTarget(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 2) + if (argc == 2) { ax::Node* arg0; ax::Rect arg1; @@ -20058,7 +20007,7 @@ int lua_ax_base_Follow_initWithTargetAndOffset(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::Node* arg0; double arg1; @@ -20078,7 +20027,7 @@ int lua_ax_base_Follow_initWithTargetAndOffset(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 4) + if (argc == 4) { ax::Node* arg0; double arg1; @@ -20234,7 +20183,7 @@ int lua_ax_base_Follow_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20310,7 +20259,7 @@ int lua_ax_base_Image_initWithImageFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -20360,7 +20309,7 @@ int lua_ax_base_Image_flipRawData(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20407,7 +20356,7 @@ int lua_ax_base_Image_getFileType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20454,7 +20403,7 @@ int lua_ax_base_Image_getPixelFormat(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20501,7 +20450,7 @@ int lua_ax_base_Image_getWidth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20548,7 +20497,7 @@ int lua_ax_base_Image_getHeight(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20595,7 +20544,7 @@ int lua_ax_base_Image_getNumberOfMipmaps(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20642,7 +20591,7 @@ int lua_ax_base_Image_hasPremultipliedAlpha(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20689,7 +20638,7 @@ int lua_ax_base_Image_getFilePath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20736,7 +20685,7 @@ int lua_ax_base_Image_getBitPerPixel(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20783,7 +20732,7 @@ int lua_ax_base_Image_hasAlpha(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20830,7 +20779,7 @@ int lua_ax_base_Image_isCompressed(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20877,7 +20826,7 @@ int lua_ax_base_Image_saveToFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -20891,7 +20840,7 @@ int lua_ax_base_Image_saveToFile(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 2) + if (argc == 2) { std::string_view arg0; bool arg1; @@ -20944,7 +20893,7 @@ int lua_ax_base_Image_premultiplyAlpha(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -20991,7 +20940,7 @@ int lua_ax_base_Image_reversePremultipliedAlpha(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -21135,7 +21084,7 @@ int lua_ax_base_Image_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -21223,7 +21172,7 @@ int lua_ax_base_PolygonInfo_setQuad(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::V3F_C4B_T2F_Quad* arg0; @@ -21274,7 +21223,7 @@ int lua_ax_base_PolygonInfo_setQuads(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::V3F_C4B_T2F_Quad* arg0; int arg1; @@ -21328,7 +21277,7 @@ int lua_ax_base_PolygonInfo_setTriangles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::TrianglesCommand::Triangles arg0; @@ -21379,7 +21328,7 @@ int lua_ax_base_PolygonInfo_getVertCount(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -21426,7 +21375,7 @@ int lua_ax_base_PolygonInfo_getTrianglesCount(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -21473,7 +21422,7 @@ int lua_ax_base_PolygonInfo_getArea(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -21520,7 +21469,7 @@ int lua_ax_base_PolygonInfo_getRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -21567,7 +21516,7 @@ int lua_ax_base_PolygonInfo_setRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Rect arg0; @@ -21617,7 +21566,7 @@ int lua_ax_base_PolygonInfo_getFilename(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -21664,7 +21613,7 @@ int lua_ax_base_PolygonInfo_setFilename(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -21701,7 +21650,7 @@ int lua_ax_base_PolygonInfo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -21766,7 +21715,7 @@ int lua_ax_base_AutoPolygon_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -21837,7 +21786,7 @@ int lua_ax_base_SpriteFrame_getRectInPixels(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -21884,7 +21833,7 @@ int lua_ax_base_SpriteFrame_setRectInPixels(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Rect arg0; @@ -21934,7 +21883,7 @@ int lua_ax_base_SpriteFrame_isRotated(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -21981,7 +21930,7 @@ int lua_ax_base_SpriteFrame_setRotated(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -22031,7 +21980,7 @@ int lua_ax_base_SpriteFrame_getRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -22078,7 +22027,7 @@ int lua_ax_base_SpriteFrame_setRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Rect arg0; @@ -22128,7 +22077,7 @@ int lua_ax_base_SpriteFrame_getCenterRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -22175,7 +22124,7 @@ int lua_ax_base_SpriteFrame_setCenterRectInPixels(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Rect arg0; @@ -22225,7 +22174,7 @@ int lua_ax_base_SpriteFrame_hasCenterRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -22272,7 +22221,7 @@ int lua_ax_base_SpriteFrame_getOffsetInPixels(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -22319,7 +22268,7 @@ int lua_ax_base_SpriteFrame_setOffsetInPixels(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -22369,7 +22318,7 @@ int lua_ax_base_SpriteFrame_getOriginalSizeInPixels(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -22416,7 +22365,7 @@ int lua_ax_base_SpriteFrame_setOriginalSizeInPixels(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -22466,7 +22415,7 @@ int lua_ax_base_SpriteFrame_getOriginalSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -22513,7 +22462,7 @@ int lua_ax_base_SpriteFrame_setOriginalSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -22563,7 +22512,7 @@ int lua_ax_base_SpriteFrame_getTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -22610,7 +22559,7 @@ int lua_ax_base_SpriteFrame_setTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -22660,7 +22609,7 @@ int lua_ax_base_SpriteFrame_getOffset(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -22707,7 +22656,7 @@ int lua_ax_base_SpriteFrame_setOffset(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -22757,7 +22706,7 @@ int lua_ax_base_SpriteFrame_getAnchorPoint(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -22804,7 +22753,7 @@ int lua_ax_base_SpriteFrame_setAnchorPoint(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -22854,7 +22803,7 @@ int lua_ax_base_SpriteFrame_hasAnchorPoint(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -22901,7 +22850,7 @@ int lua_ax_base_SpriteFrame_clone(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -23098,7 +23047,7 @@ int lua_ax_base_SpriteFrame_getName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -23133,7 +23082,7 @@ int lua_ax_base_SpriteFrame_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 5) { @@ -23158,7 +23107,7 @@ int lua_ax_base_SpriteFrame_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -23196,7 +23145,7 @@ int lua_ax_base_SpriteFrame_createWithTexture(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 5) { @@ -23221,7 +23170,7 @@ int lua_ax_base_SpriteFrame_createWithTexture(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -23258,7 +23207,7 @@ int lua_ax_base_SpriteFrame_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -23356,7 +23305,7 @@ int lua_ax_base_AnimationFrame_getSpriteFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -23403,7 +23352,7 @@ int lua_ax_base_AnimationFrame_setSpriteFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::SpriteFrame* arg0; @@ -23453,7 +23402,7 @@ int lua_ax_base_AnimationFrame_getDelayUnits(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -23500,7 +23449,7 @@ int lua_ax_base_AnimationFrame_setDelayUnits(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -23597,7 +23546,7 @@ int lua_ax_base_AnimationFrame_setUserInfo(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ValueMap arg0; @@ -23647,7 +23596,7 @@ int lua_ax_base_AnimationFrame_clone(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -23694,7 +23643,7 @@ int lua_ax_base_AnimationFrame_initWithSpriteFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::SpriteFrame* arg0; double arg1; @@ -23777,7 +23726,7 @@ int lua_ax_base_AnimationFrame_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -23856,7 +23805,7 @@ int lua_ax_base_Animation_addSpriteFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::SpriteFrame* arg0; @@ -23906,7 +23855,7 @@ int lua_ax_base_Animation_addSpriteFrameWithFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -23956,7 +23905,7 @@ int lua_ax_base_Animation_addSpriteFrameWithTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Texture2D* arg0; ax::Rect arg1; @@ -24009,7 +23958,7 @@ int lua_ax_base_Animation_getTotalDelayUnits(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -24056,7 +24005,7 @@ int lua_ax_base_Animation_setDelayPerUnit(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -24106,7 +24055,7 @@ int lua_ax_base_Animation_getDelayPerUnit(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -24153,7 +24102,7 @@ int lua_ax_base_Animation_getDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -24200,7 +24149,7 @@ int lua_ax_base_Animation_getFrames(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -24247,7 +24196,7 @@ int lua_ax_base_Animation_setFrames(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -24297,7 +24246,7 @@ int lua_ax_base_Animation_getRestoreOriginalFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -24344,7 +24293,7 @@ int lua_ax_base_Animation_setRestoreOriginalFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -24394,7 +24343,7 @@ int lua_ax_base_Animation_getLoops(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -24441,7 +24390,7 @@ int lua_ax_base_Animation_setLoops(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { unsigned int arg0; @@ -24491,7 +24440,7 @@ int lua_ax_base_Animation_clone(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -24538,7 +24487,7 @@ int lua_ax_base_Animation_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -24585,7 +24534,7 @@ int lua_ax_base_Animation_initWithSpriteFrames(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -24599,7 +24548,7 @@ int lua_ax_base_Animation_initWithSpriteFrames(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 2) + if (argc == 2) { ax::Vector arg0; double arg1; @@ -24616,7 +24565,7 @@ int lua_ax_base_Animation_initWithSpriteFrames(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 3) + if (argc == 3) { ax::Vector arg0; double arg1; @@ -24672,7 +24621,7 @@ int lua_ax_base_Animation_initWithAnimationFrames(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::Vector arg0; double arg1; @@ -24716,7 +24665,7 @@ int lua_ax_base_Animation_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -24732,7 +24681,7 @@ int lua_ax_base_Animation_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -24751,7 +24700,7 @@ int lua_ax_base_Animation_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 0) { @@ -24850,7 +24799,7 @@ int lua_ax_base_Animation_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -24939,7 +24888,7 @@ int lua_ax_base_ActionInterval_getElapsed(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -24986,7 +24935,7 @@ int lua_ax_base_ActionInterval_setAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -25036,7 +24985,7 @@ int lua_ax_base_ActionInterval_getAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -25083,7 +25032,7 @@ int lua_ax_base_ActionInterval_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -25156,7 +25105,7 @@ int lua_ax_base_Sequence_initWithTwoActions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::FiniteTimeAction* arg0; ax::FiniteTimeAction* arg1; @@ -25209,7 +25158,7 @@ int lua_ax_base_Sequence_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -25246,7 +25195,7 @@ int lua_ax_base_Sequence_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -25318,7 +25267,7 @@ int lua_ax_base_Repeat_setInnerAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::FiniteTimeAction* arg0; @@ -25368,7 +25317,7 @@ int lua_ax_base_Repeat_getInnerAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -25415,7 +25364,7 @@ int lua_ax_base_Repeat_initWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::FiniteTimeAction* arg0; unsigned int arg1; @@ -25493,7 +25442,7 @@ int lua_ax_base_Repeat_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -25567,7 +25516,7 @@ int lua_ax_base_RepeatForever_setInnerAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -25617,7 +25566,7 @@ int lua_ax_base_RepeatForever_getInnerAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -25664,7 +25613,7 @@ int lua_ax_base_RepeatForever_initWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -25737,7 +25686,7 @@ int lua_ax_base_RepeatForever_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -25811,7 +25760,7 @@ int lua_ax_base_Spawn_initWithTwoActions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::FiniteTimeAction* arg0; ax::FiniteTimeAction* arg1; @@ -25864,7 +25813,7 @@ int lua_ax_base_Spawn_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -25901,7 +25850,7 @@ int lua_ax_base_Spawn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -26028,7 +25977,7 @@ int lua_ax_base_RotateTo_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -26044,7 +25993,7 @@ int lua_ax_base_RotateTo_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -26063,7 +26012,7 @@ int lua_ax_base_RotateTo_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -26100,7 +26049,7 @@ int lua_ax_base_RotateTo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -26243,7 +26192,7 @@ int lua_ax_base_RotateBy_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 3) { @@ -26262,7 +26211,7 @@ int lua_ax_base_RotateBy_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -26278,7 +26227,7 @@ int lua_ax_base_RotateBy_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -26315,7 +26264,7 @@ int lua_ax_base_RotateBy_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -26438,7 +26387,7 @@ int lua_ax_base_MoveBy_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -26454,7 +26403,7 @@ int lua_ax_base_MoveBy_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -26491,7 +26440,7 @@ int lua_ax_base_MoveBy_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -26614,7 +26563,7 @@ int lua_ax_base_MoveTo_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -26630,7 +26579,7 @@ int lua_ax_base_MoveTo_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -26667,7 +26616,7 @@ int lua_ax_base_MoveTo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -26739,7 +26688,7 @@ int lua_ax_base_SkewTo_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { double arg0; double arg1; @@ -26822,7 +26771,7 @@ int lua_ax_base_SkewTo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -26894,7 +26843,7 @@ int lua_ax_base_SkewBy_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { double arg0; double arg1; @@ -26977,7 +26926,7 @@ int lua_ax_base_SkewBy_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -27049,7 +26998,7 @@ int lua_ax_base_JumpBy_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; ax::Vec2 arg1; @@ -27137,7 +27086,7 @@ int lua_ax_base_JumpBy_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -27209,7 +27158,7 @@ int lua_ax_base_JumpTo_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; ax::Vec2 arg1; @@ -27297,7 +27246,7 @@ int lua_ax_base_JumpTo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -27369,7 +27318,7 @@ int lua_ax_base_BezierBy_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; ax::BezierConfig arg1; @@ -27410,7 +27359,7 @@ int lua_ax_base_BezierBy_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -27481,7 +27430,7 @@ int lua_ax_base_BezierTo_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; ax::BezierConfig arg1; @@ -27522,7 +27471,7 @@ int lua_ax_base_BezierTo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -27672,7 +27621,7 @@ int lua_ax_base_ScaleTo_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 3) { @@ -27691,7 +27640,7 @@ int lua_ax_base_ScaleTo_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -27707,7 +27656,7 @@ int lua_ax_base_ScaleTo_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 4) { @@ -27750,7 +27699,7 @@ int lua_ax_base_ScaleTo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -27810,7 +27759,7 @@ int lua_ax_base_ScaleBy_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 3) { @@ -27829,7 +27778,7 @@ int lua_ax_base_ScaleBy_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -27845,7 +27794,7 @@ int lua_ax_base_ScaleBy_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 4) { @@ -27888,7 +27837,7 @@ int lua_ax_base_ScaleBy_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -27959,7 +27908,7 @@ int lua_ax_base_Blink_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; int arg1; @@ -28037,7 +27986,7 @@ int lua_ax_base_Blink_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -28109,7 +28058,7 @@ int lua_ax_base_FadeTo_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; uint16_t arg1; @@ -28187,7 +28136,7 @@ int lua_ax_base_FadeTo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -28259,7 +28208,7 @@ int lua_ax_base_FadeIn_setReverseAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::FadeTo* arg0; @@ -28332,7 +28281,7 @@ int lua_ax_base_FadeIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -28404,7 +28353,7 @@ int lua_ax_base_FadeOut_setReverseAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::FadeTo* arg0; @@ -28477,7 +28426,7 @@ int lua_ax_base_FadeOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -28549,7 +28498,7 @@ int lua_ax_base_TintTo_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; uint16_t arg1; @@ -28596,7 +28545,7 @@ int lua_ax_base_TintTo_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -28612,7 +28561,7 @@ int lua_ax_base_TintTo_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 4) { @@ -28655,7 +28604,7 @@ int lua_ax_base_TintTo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -28727,7 +28676,7 @@ int lua_ax_base_TintBy_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; int32_t arg1; @@ -28815,7 +28764,7 @@ int lua_ax_base_TintBy_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -28910,7 +28859,7 @@ int lua_ax_base_DelayTime_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -28981,7 +28930,7 @@ int lua_ax_base_Animate_setAnimation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Animation* arg0; @@ -29078,7 +29027,7 @@ int lua_ax_base_Animate_getCurrentFrameIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -29125,7 +29074,7 @@ int lua_ax_base_Animate_initWithAnimation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Animation* arg0; @@ -29198,7 +29147,7 @@ int lua_ax_base_Animate_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -29273,7 +29222,7 @@ int lua_ax_base_TargetedAction_setForcedTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -29370,7 +29319,7 @@ int lua_ax_base_TargetedAction_initWithTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Node* arg0; ax::FiniteTimeAction* arg1; @@ -29448,7 +29397,7 @@ int lua_ax_base_TargetedAction_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -29522,7 +29471,7 @@ int lua_ax_base_ActionFloat_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; double arg1; @@ -29618,7 +29567,7 @@ int lua_ax_base_ActionFloat_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -29690,7 +29639,7 @@ int lua_ax_base_Properties_getNextProperty(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -29737,7 +29686,7 @@ int lua_ax_base_Properties_getNextNamespace(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -29784,7 +29733,7 @@ int lua_ax_base_Properties_rewind(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -29918,7 +29867,7 @@ int lua_ax_base_Properties_getId(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -29965,7 +29914,7 @@ int lua_ax_base_Properties_exists(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { const char* arg0; @@ -30015,7 +29964,7 @@ int lua_ax_base_Properties_getType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -30026,7 +29975,7 @@ int lua_ax_base_Properties_getType(lua_State* tolua_S) tolua_pushnumber(tolua_S,(lua_Number)ret); return 1; } - if (argc == 1) + if (argc == 1) { const char* arg0; @@ -30076,7 +30025,7 @@ int lua_ax_base_Properties_getString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -30087,7 +30036,7 @@ int lua_ax_base_Properties_getString(lua_State* tolua_S) tolua_pushstring(tolua_S,(const char*)ret); return 1; } - if (argc == 1) + if (argc == 1) { const char* arg0; @@ -30101,7 +30050,7 @@ int lua_ax_base_Properties_getString(lua_State* tolua_S) tolua_pushstring(tolua_S,(const char*)ret); return 1; } - if (argc == 2) + if (argc == 2) { const char* arg0; const char* arg1; @@ -30154,7 +30103,7 @@ int lua_ax_base_Properties_setString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; const char* arg1; @@ -30207,7 +30156,7 @@ int lua_ax_base_Properties_getBool(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -30218,7 +30167,7 @@ int lua_ax_base_Properties_getBool(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 1) + if (argc == 1) { const char* arg0; @@ -30232,7 +30181,7 @@ int lua_ax_base_Properties_getBool(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 2) + if (argc == 2) { const char* arg0; bool arg1; @@ -30285,7 +30234,7 @@ int lua_ax_base_Properties_getInt(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -30296,7 +30245,7 @@ int lua_ax_base_Properties_getInt(lua_State* tolua_S) tolua_pushnumber(tolua_S,(lua_Number)ret); return 1; } - if (argc == 1) + if (argc == 1) { const char* arg0; @@ -30346,7 +30295,7 @@ int lua_ax_base_Properties_getFloat(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -30357,7 +30306,7 @@ int lua_ax_base_Properties_getFloat(lua_State* tolua_S) tolua_pushnumber(tolua_S,(lua_Number)ret); return 1; } - if (argc == 1) + if (argc == 1) { const char* arg0; @@ -30407,7 +30356,7 @@ int lua_ax_base_Properties_getMat4(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; ax::Mat4* arg1; @@ -30460,7 +30409,7 @@ int lua_ax_base_Properties_getVec2(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; ax::Vec2* arg1; @@ -30513,7 +30462,7 @@ int lua_ax_base_Properties_getVec3(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; ax::Vec3* arg1; @@ -30566,7 +30515,7 @@ int lua_ax_base_Properties_getVec4(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; ax::Vec4* arg1; @@ -30619,7 +30568,7 @@ int lua_ax_base_Properties_getQuaternionFromAxisAngle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; ax::Quaternion* arg1; @@ -30735,7 +30684,7 @@ int lua_ax_base_Properties_getPath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; std::string* arg1; @@ -30789,7 +30738,7 @@ int lua_ax_base_Properties_getVariable(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { const char* arg0; @@ -30803,7 +30752,7 @@ int lua_ax_base_Properties_getVariable(lua_State* tolua_S) tolua_pushstring(tolua_S,(const char*)ret); return 1; } - if (argc == 2) + if (argc == 2) { const char* arg0; const char* arg1; @@ -30856,7 +30805,7 @@ int lua_ax_base_Properties_setVariable(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; const char* arg1; @@ -31049,7 +30998,7 @@ int lua_ax_base_Properties_parseColor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -31065,7 +31014,7 @@ int lua_ax_base_Properties_parseColor(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -31514,7 +31463,7 @@ int lua_ax_base_UserDefault_setBoolForKey(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; bool arg1; @@ -31567,7 +31516,7 @@ int lua_ax_base_UserDefault_setIntegerForKey(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; int arg1; @@ -31620,7 +31569,7 @@ int lua_ax_base_UserDefault_setLargeIntForKey(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; long long arg1; @@ -31673,7 +31622,7 @@ int lua_ax_base_UserDefault_setFloatForKey(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; double arg1; @@ -31726,7 +31675,7 @@ int lua_ax_base_UserDefault_setDoubleForKey(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; double arg1; @@ -31779,7 +31728,7 @@ int lua_ax_base_UserDefault_setStringForKey(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; std::string_view arg1; @@ -31832,7 +31781,7 @@ int lua_ax_base_UserDefault_flush(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -31879,7 +31828,7 @@ int lua_ax_base_UserDefault_deleteValueForKey(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { const char* arg0; @@ -31929,7 +31878,7 @@ int lua_ax_base_UserDefault_setEncryptEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { bool arg0; std::string_view arg1; @@ -32102,7 +32051,7 @@ int lua_ax_base_FileUtils_purgeCachedEntries(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -32149,7 +32098,7 @@ int lua_ax_base_FileUtils_getStringFromFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -32199,7 +32148,7 @@ int lua_ax_base_FileUtils_fullPathForFilename(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -32249,7 +32198,7 @@ int lua_ax_base_FileUtils_fullPathFromRelativeFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { std::string_view arg0; std::string_view arg1; @@ -32302,7 +32251,7 @@ int lua_ax_base_FileUtils_fullPathForDirectory(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -32352,7 +32301,7 @@ int lua_ax_base_FileUtils_setSearchPaths(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::vector arg0; @@ -32402,7 +32351,7 @@ int lua_ax_base_FileUtils_getDefaultResourceRootPath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -32449,7 +32398,7 @@ int lua_ax_base_FileUtils_setDefaultResourceRootPath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -32499,7 +32448,7 @@ int lua_ax_base_FileUtils_addSearchPath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -32513,7 +32462,7 @@ int lua_ax_base_FileUtils_addSearchPath(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { std::string_view arg0; bool arg1; @@ -32566,7 +32515,7 @@ int lua_ax_base_FileUtils_getSearchPaths(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -32613,7 +32562,7 @@ int lua_ax_base_FileUtils_getOriginalSearchPaths(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -32660,7 +32609,7 @@ int lua_ax_base_FileUtils_getWritablePath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -32707,7 +32656,7 @@ int lua_ax_base_FileUtils_getNativeWritableAbsolutePath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -32754,7 +32703,7 @@ int lua_ax_base_FileUtils_setWritablePath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -32804,7 +32753,7 @@ int lua_ax_base_FileUtils_setPopupNotify(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -32854,7 +32803,7 @@ int lua_ax_base_FileUtils_isPopupNotify(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -32901,7 +32850,7 @@ int lua_ax_base_FileUtils_getValueMapFromFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -32951,7 +32900,7 @@ int lua_ax_base_FileUtils_getValueMapFromData(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const char* arg0; int arg1; @@ -33004,7 +32953,7 @@ int lua_ax_base_FileUtils_writeToFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::ValueMap arg0; std::string_view arg1; @@ -33057,7 +33006,7 @@ int lua_ax_base_FileUtils_writeStringToFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { std::string_view arg0; std::string_view arg1; @@ -33110,7 +33059,7 @@ int lua_ax_base_FileUtils_writeValueMapToFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::ValueMap arg0; std::string_view arg1; @@ -33163,7 +33112,7 @@ int lua_ax_base_FileUtils_writeValueVectorToFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::ValueVector arg0; std::string_view arg1; @@ -33216,7 +33165,7 @@ int lua_ax_base_FileUtils_getValueVectorFromFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -33266,7 +33215,7 @@ int lua_ax_base_FileUtils_isFileExist(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -33316,7 +33265,7 @@ int lua_ax_base_FileUtils_isAbsolutePath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -33366,7 +33315,7 @@ int lua_ax_base_FileUtils_isDirectoryExist(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -33416,7 +33365,7 @@ int lua_ax_base_FileUtils_createDirectories(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -33466,7 +33415,7 @@ int lua_ax_base_FileUtils_removeDirectory(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -33516,7 +33465,7 @@ int lua_ax_base_FileUtils_removeFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -33633,7 +33582,7 @@ int lua_ax_base_FileUtils_getFileSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -33683,7 +33632,7 @@ int lua_ax_base_FileUtils_listFiles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -33733,7 +33682,7 @@ int lua_ax_base_FileUtils_listFilesRecursively(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { std::string_view arg0; std::vector* arg1; @@ -33786,7 +33735,7 @@ int lua_ax_base_FileUtils_isFileExistInternal(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -33836,7 +33785,7 @@ int lua_ax_base_FileUtils_isDirectoryExistInternal(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -34256,7 +34205,7 @@ int lua_ax_base_EventCustom_getEventName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -34290,7 +34239,7 @@ int lua_ax_base_EventCustom_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -34364,7 +34313,7 @@ int lua_ax_base_EventDispatcher_addEventListenerWithSceneGraphPriority(lua_State #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::EventListener* arg0; ax::Node* arg1; @@ -34417,7 +34366,7 @@ int lua_ax_base_EventDispatcher_addEventListenerWithFixedPriority(lua_State* tol #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::EventListener* arg0; int arg1; @@ -34470,7 +34419,7 @@ int lua_ax_base_EventDispatcher_addCustomEventListener(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { std::string_view arg0; std::function arg1; @@ -34527,7 +34476,7 @@ int lua_ax_base_EventDispatcher_removeEventListener(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::EventListener* arg0; @@ -34577,7 +34526,7 @@ int lua_ax_base_EventDispatcher_removeEventListenersForType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::EventListener::Type arg0; @@ -34627,7 +34576,7 @@ int lua_ax_base_EventDispatcher_removeEventListenersForTarget(lua_State* tolua_S #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -34641,7 +34590,7 @@ int lua_ax_base_EventDispatcher_removeEventListenersForTarget(lua_State* tolua_S lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { ax::Node* arg0; bool arg1; @@ -34694,7 +34643,7 @@ int lua_ax_base_EventDispatcher_removeCustomEventListeners(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -34744,7 +34693,7 @@ int lua_ax_base_EventDispatcher_removeAllEventListeners(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -34791,7 +34740,7 @@ int lua_ax_base_EventDispatcher_pauseEventListenersForTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -34805,7 +34754,7 @@ int lua_ax_base_EventDispatcher_pauseEventListenersForTarget(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { ax::Node* arg0; bool arg1; @@ -34858,7 +34807,7 @@ int lua_ax_base_EventDispatcher_resumeEventListenersForTarget(lua_State* tolua_S #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -34872,7 +34821,7 @@ int lua_ax_base_EventDispatcher_resumeEventListenersForTarget(lua_State* tolua_S lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { ax::Node* arg0; bool arg1; @@ -34925,7 +34874,7 @@ int lua_ax_base_EventDispatcher_setPriority(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::EventListener* arg0; int arg1; @@ -34978,7 +34927,7 @@ int lua_ax_base_EventDispatcher_setEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -35028,7 +34977,7 @@ int lua_ax_base_EventDispatcher_isEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -35075,7 +35024,7 @@ int lua_ax_base_EventDispatcher_dispatchEvent(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Event* arg0; @@ -35089,7 +35038,7 @@ int lua_ax_base_EventDispatcher_dispatchEvent(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { ax::Event* arg0; bool arg1; @@ -35142,7 +35091,7 @@ int lua_ax_base_EventDispatcher_dispatchCustomEvent(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -35156,7 +35105,7 @@ int lua_ax_base_EventDispatcher_dispatchCustomEvent(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { std::string_view arg0; void* arg1; @@ -35174,7 +35123,7 @@ int lua_ax_base_EventDispatcher_dispatchCustomEvent(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 3) + if (argc == 3) { std::string_view arg0; void* arg1; @@ -35231,7 +35180,7 @@ int lua_ax_base_EventDispatcher_hasEventListener(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -35268,7 +35217,7 @@ int lua_ax_base_EventDispatcher_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -35341,7 +35290,7 @@ int lua_ax_base_EventFocus_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::ui::Widget* arg0; ax::ui::Widget* arg1; @@ -35417,7 +35366,7 @@ int lua_ax_base_EventListenerAcceleration_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::function arg0; @@ -35458,7 +35407,7 @@ int lua_ax_base_EventListenerAcceleration_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -35529,7 +35478,7 @@ int lua_ax_base_EventListenerFocus_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -35563,7 +35512,7 @@ int lua_ax_base_EventListenerFocus_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -35634,7 +35583,7 @@ int lua_ax_base_EventListenerKeyboard_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -35668,7 +35617,7 @@ int lua_ax_base_EventListenerKeyboard_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -35739,7 +35688,7 @@ int lua_ax_base_EventMouse_getMouseEventType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -35786,7 +35735,7 @@ int lua_ax_base_EventMouse_setScrollData(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; double arg1; @@ -35839,7 +35788,7 @@ int lua_ax_base_EventMouse_getScrollX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -35886,7 +35835,7 @@ int lua_ax_base_EventMouse_getScrollY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -35933,7 +35882,7 @@ int lua_ax_base_EventMouse_setMouseInfo(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { double arg0; double arg1; @@ -35989,7 +35938,7 @@ int lua_ax_base_EventMouse_setMouseButton(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::EventMouse::MouseButton arg0; @@ -36039,7 +35988,7 @@ int lua_ax_base_EventMouse_getMouseButton(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36086,7 +36035,7 @@ int lua_ax_base_EventMouse_getLocation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36133,7 +36082,7 @@ int lua_ax_base_EventMouse_getPreviousLocation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36180,7 +36129,7 @@ int lua_ax_base_EventMouse_getStartLocation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36227,7 +36176,7 @@ int lua_ax_base_EventMouse_getDelta(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36274,7 +36223,7 @@ int lua_ax_base_EventMouse_getLocationInView(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36321,7 +36270,7 @@ int lua_ax_base_EventMouse_getPreviousLocationInView(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36368,7 +36317,7 @@ int lua_ax_base_EventMouse_getStartLocationInView(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36402,7 +36351,7 @@ int lua_ax_base_EventMouse_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::EventMouse::MouseEventType arg0; @@ -36489,7 +36438,7 @@ int lua_ax_base_EventListenerMouse_setSwallowMouse(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -36539,7 +36488,7 @@ int lua_ax_base_EventListenerMouse_isSwallowMouse(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36586,7 +36535,7 @@ int lua_ax_base_EventListenerMouse_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36620,7 +36569,7 @@ int lua_ax_base_EventListenerMouse_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36712,7 +36661,7 @@ int lua_ax_base_EventListenerTouchOneByOne_setSwallowTouches(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -36762,7 +36711,7 @@ int lua_ax_base_EventListenerTouchOneByOne_isSwallowTouches(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36809,7 +36758,7 @@ int lua_ax_base_EventListenerTouchOneByOne_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36843,7 +36792,7 @@ int lua_ax_base_EventListenerTouchOneByOne_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36916,7 +36865,7 @@ int lua_ax_base_EventListenerTouchAllAtOnce_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -36950,7 +36899,7 @@ int lua_ax_base_EventListenerTouchAllAtOnce_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -37021,7 +36970,7 @@ int lua_ax_base_EventController_getControllerEventType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -37068,7 +37017,7 @@ int lua_ax_base_EventController_getController(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -37115,7 +37064,7 @@ int lua_ax_base_EventController_getKeyCode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -37162,7 +37111,7 @@ int lua_ax_base_EventController_setKeyCode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -37212,7 +37161,7 @@ int lua_ax_base_EventController_setConnectStatus(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -37262,7 +37211,7 @@ int lua_ax_base_EventController_isConnected(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -37464,7 +37413,7 @@ int lua_ax_base_ActionCamera_getEye(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -37511,7 +37460,7 @@ int lua_ax_base_ActionCamera_setCenter(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec3 arg0; @@ -37561,7 +37510,7 @@ int lua_ax_base_ActionCamera_getCenter(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -37608,7 +37557,7 @@ int lua_ax_base_ActionCamera_setUp(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec3 arg0; @@ -37658,7 +37607,7 @@ int lua_ax_base_ActionCamera_getUp(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -37692,7 +37641,7 @@ int lua_ax_base_ActionCamera_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -37768,7 +37717,7 @@ int lua_ax_base_OrbitCamera_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 7) + if (argc == 7) { double arg0; double arg1; @@ -37871,7 +37820,7 @@ int lua_ax_base_OrbitCamera_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -37943,7 +37892,7 @@ int lua_ax_base_CardinalSplineTo_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { double arg0; ax::PointArray* arg1; @@ -37999,7 +37948,7 @@ int lua_ax_base_CardinalSplineTo_updatePosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -38049,7 +37998,7 @@ int lua_ax_base_CardinalSplineTo_getPoints(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -38083,7 +38032,7 @@ int lua_ax_base_CardinalSplineTo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -38143,7 +38092,7 @@ int lua_ax_base_CardinalSplineBy_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -38213,7 +38162,7 @@ int lua_ax_base_CatmullRomTo_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; ax::PointArray* arg1; @@ -38286,7 +38235,7 @@ int lua_ax_base_CatmullRomBy_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; ax::PointArray* arg1; @@ -38359,7 +38308,7 @@ int lua_ax_base_ActionEase_getInnerAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -38406,7 +38355,7 @@ int lua_ax_base_ActionEase_initWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -38477,7 +38426,7 @@ int lua_ax_base_EaseRateAction_setRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -38527,7 +38476,7 @@ int lua_ax_base_EaseRateAction_getRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -38574,7 +38523,7 @@ int lua_ax_base_EaseRateAction_initWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::ActionInterval* arg0; double arg1; @@ -38711,7 +38660,7 @@ int lua_ax_base_EaseExponentialIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -38805,7 +38754,7 @@ int lua_ax_base_EaseExponentialOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -38899,7 +38848,7 @@ int lua_ax_base_EaseExponentialInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -38993,7 +38942,7 @@ int lua_ax_base_EaseSineIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -39087,7 +39036,7 @@ int lua_ax_base_EaseSineOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -39181,7 +39130,7 @@ int lua_ax_base_EaseSineInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -39294,7 +39243,7 @@ int lua_ax_base_EaseBounceIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -39388,7 +39337,7 @@ int lua_ax_base_EaseBounceOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -39482,7 +39431,7 @@ int lua_ax_base_EaseBounceInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -39576,7 +39525,7 @@ int lua_ax_base_EaseBackIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -39670,7 +39619,7 @@ int lua_ax_base_EaseBackOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -39764,7 +39713,7 @@ int lua_ax_base_EaseBackInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -39858,7 +39807,7 @@ int lua_ax_base_EaseQuadraticActionIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -39952,7 +39901,7 @@ int lua_ax_base_EaseQuadraticActionOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -40046,7 +39995,7 @@ int lua_ax_base_EaseQuadraticActionInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -40140,7 +40089,7 @@ int lua_ax_base_EaseQuarticActionIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -40234,7 +40183,7 @@ int lua_ax_base_EaseQuarticActionOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -40328,7 +40277,7 @@ int lua_ax_base_EaseQuarticActionInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -40422,7 +40371,7 @@ int lua_ax_base_EaseQuinticActionIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -40516,7 +40465,7 @@ int lua_ax_base_EaseQuinticActionOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -40610,7 +40559,7 @@ int lua_ax_base_EaseQuinticActionInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -40704,7 +40653,7 @@ int lua_ax_base_EaseCircleActionIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -40798,7 +40747,7 @@ int lua_ax_base_EaseCircleActionOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -40892,7 +40841,7 @@ int lua_ax_base_EaseCircleActionInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -40986,7 +40935,7 @@ int lua_ax_base_EaseCubicActionIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -41080,7 +41029,7 @@ int lua_ax_base_EaseCubicActionOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -41174,7 +41123,7 @@ int lua_ax_base_EaseCubicActionInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -41270,7 +41219,7 @@ int lua_ax_base_EaseIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -41366,7 +41315,7 @@ int lua_ax_base_EaseOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -41462,7 +41411,7 @@ int lua_ax_base_EaseInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -41533,7 +41482,7 @@ int lua_ax_base_EaseElastic_getPeriod(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -41580,7 +41529,7 @@ int lua_ax_base_EaseElastic_setPeriod(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -41630,7 +41579,7 @@ int lua_ax_base_EaseElastic_initWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -41644,7 +41593,7 @@ int lua_ax_base_EaseElastic_initWithAction(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 2) + if (argc == 2) { ax::ActionInterval* arg0; double arg1; @@ -41757,7 +41706,7 @@ int lua_ax_base_EaseElasticIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -41866,7 +41815,7 @@ int lua_ax_base_EaseElasticOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -41975,7 +41924,7 @@ int lua_ax_base_EaseElasticInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -42046,7 +41995,7 @@ int lua_ax_base_EaseBezierAction_setBezierParamer(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; double arg1; @@ -42128,7 +42077,7 @@ int lua_ax_base_EaseBezierAction_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -42240,7 +42189,7 @@ int lua_ax_base_Show_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -42332,7 +42281,7 @@ int lua_ax_base_Hide_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -42424,7 +42373,7 @@ int lua_ax_base_ToggleVisibility_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -42495,7 +42444,7 @@ int lua_ax_base_RemoveSelf_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -42579,7 +42528,7 @@ int lua_ax_base_RemoveSelf_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -42651,7 +42600,7 @@ int lua_ax_base_FlipX_initWithFlipX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -42724,7 +42673,7 @@ int lua_ax_base_FlipX_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -42796,7 +42745,7 @@ int lua_ax_base_FlipY_initWithFlipY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -42869,7 +42818,7 @@ int lua_ax_base_FlipY_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -42941,7 +42890,7 @@ int lua_ax_base_Place_initWithPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -43014,7 +42963,7 @@ int lua_ax_base_Place_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -43086,7 +43035,7 @@ int lua_ax_base_CallFunc_execute(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -43120,7 +43069,7 @@ int lua_ax_base_CallFunc_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -43191,7 +43140,7 @@ int lua_ax_base_GridAction_getGrid(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -43238,7 +43187,7 @@ int lua_ax_base_GridAction_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; ax::Vec2 arg1; @@ -43312,7 +43261,7 @@ int lua_ax_base_Grid3DAction_getGridRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -43419,7 +43368,7 @@ int lua_ax_base_StopGrid_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -43490,7 +43439,7 @@ int lua_ax_base_ReuseGrid_initWithTimes(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -43563,7 +43512,7 @@ int lua_ax_base_ReuseGrid_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -43635,7 +43584,7 @@ int lua_ax_base_Waves3D_getAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -43682,7 +43631,7 @@ int lua_ax_base_Waves3D_setAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -43732,7 +43681,7 @@ int lua_ax_base_Waves3D_getAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -43779,7 +43728,7 @@ int lua_ax_base_Waves3D_setAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -43829,7 +43778,7 @@ int lua_ax_base_Waves3D_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; ax::Vec2 arg1; @@ -43917,7 +43866,7 @@ int lua_ax_base_Waves3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -43993,7 +43942,7 @@ int lua_ax_base_FlipX3D_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -44043,7 +43992,7 @@ int lua_ax_base_FlipX3D_initWithSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Vec2 arg0; double arg1; @@ -44119,7 +44068,7 @@ int lua_ax_base_FlipX3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -44215,7 +44164,7 @@ int lua_ax_base_FlipY3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -44286,7 +44235,7 @@ int lua_ax_base_Lens3D_getLensEffect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -44333,7 +44282,7 @@ int lua_ax_base_Lens3D_setLensEffect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -44383,7 +44332,7 @@ int lua_ax_base_Lens3D_setConcave(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -44433,7 +44382,7 @@ int lua_ax_base_Lens3D_getPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -44480,7 +44429,7 @@ int lua_ax_base_Lens3D_setPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -44530,7 +44479,7 @@ int lua_ax_base_Lens3D_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; ax::Vec2 arg1; @@ -44618,7 +44567,7 @@ int lua_ax_base_Lens3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -44695,7 +44644,7 @@ int lua_ax_base_Ripple3D_getPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -44742,7 +44691,7 @@ int lua_ax_base_Ripple3D_setPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -44792,7 +44741,7 @@ int lua_ax_base_Ripple3D_getAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -44839,7 +44788,7 @@ int lua_ax_base_Ripple3D_setAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -44889,7 +44838,7 @@ int lua_ax_base_Ripple3D_getAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -44936,7 +44885,7 @@ int lua_ax_base_Ripple3D_setAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -44986,7 +44935,7 @@ int lua_ax_base_Ripple3D_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 6) + if (argc == 6) { double arg0; ax::Vec2 arg1; @@ -45084,7 +45033,7 @@ int lua_ax_base_Ripple3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -45162,7 +45111,7 @@ int lua_ax_base_Shaky3D_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; ax::Vec2 arg1; @@ -45250,7 +45199,7 @@ int lua_ax_base_Shaky3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -45322,7 +45271,7 @@ int lua_ax_base_Liquid_getAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -45369,7 +45318,7 @@ int lua_ax_base_Liquid_setAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -45419,7 +45368,7 @@ int lua_ax_base_Liquid_getAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -45466,7 +45415,7 @@ int lua_ax_base_Liquid_setAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -45516,7 +45465,7 @@ int lua_ax_base_Liquid_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; ax::Vec2 arg1; @@ -45604,7 +45553,7 @@ int lua_ax_base_Liquid_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -45680,7 +45629,7 @@ int lua_ax_base_Waves_getAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -45727,7 +45676,7 @@ int lua_ax_base_Waves_setAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -45777,7 +45726,7 @@ int lua_ax_base_Waves_getAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -45824,7 +45773,7 @@ int lua_ax_base_Waves_setAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -45874,7 +45823,7 @@ int lua_ax_base_Waves_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 6) + if (argc == 6) { double arg0; ax::Vec2 arg1; @@ -45972,7 +45921,7 @@ int lua_ax_base_Waves_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -46048,7 +45997,7 @@ int lua_ax_base_Twirl_getPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -46095,7 +46044,7 @@ int lua_ax_base_Twirl_setPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -46145,7 +46094,7 @@ int lua_ax_base_Twirl_getAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -46192,7 +46141,7 @@ int lua_ax_base_Twirl_setAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -46242,7 +46191,7 @@ int lua_ax_base_Twirl_getAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -46289,7 +46238,7 @@ int lua_ax_base_Twirl_setAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -46339,7 +46288,7 @@ int lua_ax_base_Twirl_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 5) + if (argc == 5) { double arg0; ax::Vec2 arg1; @@ -46432,7 +46381,7 @@ int lua_ax_base_Twirl_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -46510,7 +46459,7 @@ int lua_ax_base_ActionManager_addAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::Action* arg0; ax::Node* arg1; @@ -46566,7 +46515,7 @@ int lua_ax_base_ActionManager_removeAllActions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -46613,7 +46562,7 @@ int lua_ax_base_ActionManager_removeAllActionsFromTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -46663,7 +46612,7 @@ int lua_ax_base_ActionManager_removeAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Action* arg0; @@ -46713,7 +46662,7 @@ int lua_ax_base_ActionManager_removeActionByTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { int arg0; ax::Node* arg1; @@ -46766,7 +46715,7 @@ int lua_ax_base_ActionManager_removeAllActionsByTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { int arg0; ax::Node* arg1; @@ -46819,7 +46768,7 @@ int lua_ax_base_ActionManager_removeActionsByFlags(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { unsigned int arg0; ax::Node* arg1; @@ -46872,7 +46821,7 @@ int lua_ax_base_ActionManager_getActionByTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { int arg0; const ax::Node* arg1; @@ -46925,7 +46874,7 @@ int lua_ax_base_ActionManager_getNumberOfRunningActionsInTarget(lua_State* tolua #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { const ax::Node* arg0; @@ -46975,7 +46924,7 @@ int lua_ax_base_ActionManager_getNumberOfRunningActions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -47022,7 +46971,7 @@ int lua_ax_base_ActionManager_getNumberOfRunningActionsInTargetByTag(lua_State* #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const ax::Node* arg0; int arg1; @@ -47075,7 +47024,7 @@ int lua_ax_base_ActionManager_pauseTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -47125,7 +47074,7 @@ int lua_ax_base_ActionManager_resumeTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -47175,7 +47124,7 @@ int lua_ax_base_ActionManager_pauseAllRunningActions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -47222,7 +47171,7 @@ int lua_ax_base_ActionManager_resumeTargets(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -47272,7 +47221,7 @@ int lua_ax_base_ActionManager_update(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -47309,7 +47258,7 @@ int lua_ax_base_ActionManager_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -47453,7 +47402,7 @@ int lua_ax_base_ProgressTo_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; double arg1; @@ -47531,7 +47480,7 @@ int lua_ax_base_ProgressTo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -47603,7 +47552,7 @@ int lua_ax_base_ProgressFromTo_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { double arg0; double arg1; @@ -47686,7 +47635,7 @@ int lua_ax_base_ProgressFromTo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -47758,7 +47707,7 @@ int lua_ax_base_ShakyTiles3D_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; ax::Vec2 arg1; @@ -47846,7 +47795,7 @@ int lua_ax_base_ShakyTiles3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -47918,7 +47867,7 @@ int lua_ax_base_ShatteredTiles3D_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; ax::Vec2 arg1; @@ -48006,7 +47955,7 @@ int lua_ax_base_ShatteredTiles3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -48078,7 +48027,7 @@ int lua_ax_base_ShuffleTiles_getDelta(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -48128,7 +48077,7 @@ int lua_ax_base_ShuffleTiles_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { double arg0; ax::Vec2 arg1; @@ -48211,7 +48160,7 @@ int lua_ax_base_ShuffleTiles_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -48284,7 +48233,7 @@ int lua_ax_base_FadeOutTRTiles_testFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Vec2 arg0; double arg1; @@ -48337,7 +48286,7 @@ int lua_ax_base_FadeOutTRTiles_turnOnTile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -48387,7 +48336,7 @@ int lua_ax_base_FadeOutTRTiles_turnOffTile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -48437,7 +48386,7 @@ int lua_ax_base_FadeOutTRTiles_transformTile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Vec2 arg0; double arg1; @@ -48515,7 +48464,7 @@ int lua_ax_base_FadeOutTRTiles_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -48615,7 +48564,7 @@ int lua_ax_base_FadeOutBLTiles_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -48711,7 +48660,7 @@ int lua_ax_base_FadeOutUpTiles_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -48807,7 +48756,7 @@ int lua_ax_base_FadeOutDownTiles_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -48878,7 +48827,7 @@ int lua_ax_base_TurnOffTiles_turnOnTile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -48928,7 +48877,7 @@ int lua_ax_base_TurnOffTiles_turnOffTile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -48978,7 +48927,7 @@ int lua_ax_base_TurnOffTiles_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { double arg0; ax::Vec2 arg1; @@ -49022,7 +48971,7 @@ int lua_ax_base_TurnOffTiles_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 3) { @@ -49041,7 +48990,7 @@ int lua_ax_base_TurnOffTiles_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -49078,7 +49027,7 @@ int lua_ax_base_TurnOffTiles_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -49152,7 +49101,7 @@ int lua_ax_base_WavesTiles3D_getAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -49199,7 +49148,7 @@ int lua_ax_base_WavesTiles3D_setAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -49249,7 +49198,7 @@ int lua_ax_base_WavesTiles3D_getAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -49296,7 +49245,7 @@ int lua_ax_base_WavesTiles3D_setAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -49346,7 +49295,7 @@ int lua_ax_base_WavesTiles3D_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; ax::Vec2 arg1; @@ -49434,7 +49383,7 @@ int lua_ax_base_WavesTiles3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -49510,7 +49459,7 @@ int lua_ax_base_JumpTiles3D_getAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -49557,7 +49506,7 @@ int lua_ax_base_JumpTiles3D_setAmplitude(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -49607,7 +49556,7 @@ int lua_ax_base_JumpTiles3D_getAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -49654,7 +49603,7 @@ int lua_ax_base_JumpTiles3D_setAmplitudeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -49704,7 +49653,7 @@ int lua_ax_base_JumpTiles3D_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; ax::Vec2 arg1; @@ -49792,7 +49741,7 @@ int lua_ax_base_JumpTiles3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -49868,7 +49817,7 @@ int lua_ax_base_SplitRows_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; unsigned int arg1; @@ -49946,7 +49895,7 @@ int lua_ax_base_SplitRows_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -50018,7 +49967,7 @@ int lua_ax_base_SplitCols_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; unsigned int arg1; @@ -50096,7 +50045,7 @@ int lua_ax_base_SplitCols_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -50168,7 +50117,7 @@ int lua_ax_base_ActionTween_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; std::string_view arg1; @@ -50290,7 +50239,7 @@ int lua_ax_base_ActionCoroutine_initWithCoroutine(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::function arg0; @@ -50371,7 +50320,7 @@ int lua_ax_base_ActionCoroutine_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -50443,7 +50392,7 @@ int lua_ax_base_AtlasNode_updateAtlasValues(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -50490,7 +50439,7 @@ int lua_ax_base_AtlasNode_getTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -50537,7 +50486,7 @@ int lua_ax_base_AtlasNode_setTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -50587,7 +50536,7 @@ int lua_ax_base_AtlasNode_setBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::BlendFunc arg0; @@ -50637,7 +50586,7 @@ int lua_ax_base_AtlasNode_getBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -50684,7 +50633,7 @@ int lua_ax_base_AtlasNode_setTextureAtlas(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::TextureAtlas* arg0; @@ -50734,7 +50683,7 @@ int lua_ax_base_AtlasNode_getTextureAtlas(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -50781,7 +50730,7 @@ int lua_ax_base_AtlasNode_setQuadsToDraw(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ssize_t arg0; @@ -50831,7 +50780,7 @@ int lua_ax_base_AtlasNode_getQuadsToDraw(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -50878,7 +50827,7 @@ int lua_ax_base_AtlasNode_initWithTileFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { std::string_view arg0; int arg1; @@ -50937,7 +50886,7 @@ int lua_ax_base_AtlasNode_initWithTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { ax::Texture2D* arg0; int arg1; @@ -51025,7 +50974,7 @@ int lua_ax_base_AtlasNode_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -51107,7 +51056,7 @@ int lua_ax_base_ClippingNode_getStencil(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -51154,7 +51103,7 @@ int lua_ax_base_ClippingNode_setStencil(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -51168,7 +51117,7 @@ int lua_ax_base_ClippingNode_setStencil(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { ax::Node* arg0; bool arg1; @@ -51221,7 +51170,7 @@ int lua_ax_base_ClippingNode_hasContent(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -51268,7 +51217,7 @@ int lua_ax_base_ClippingNode_getAlphaThreshold(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -51315,7 +51264,7 @@ int lua_ax_base_ClippingNode_setAlphaThreshold(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -51365,7 +51314,7 @@ int lua_ax_base_ClippingNode_isInverted(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -51412,7 +51361,7 @@ int lua_ax_base_ClippingNode_setInverted(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -51462,7 +51411,7 @@ int lua_ax_base_ClippingNode_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -51500,7 +51449,7 @@ int lua_ax_base_ClippingNode_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 1) { @@ -51513,7 +51462,7 @@ int lua_ax_base_ClippingNode_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 0) { @@ -51585,7 +51534,7 @@ int lua_ax_base_ClippingRectangleNode_getClippingRegion(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -51632,7 +51581,7 @@ int lua_ax_base_ClippingRectangleNode_setClippingRegion(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Rect arg0; @@ -51682,7 +51631,7 @@ int lua_ax_base_ClippingRectangleNode_isClippingEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -51729,7 +51678,7 @@ int lua_ax_base_ClippingRectangleNode_setClippingEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -51767,7 +51716,7 @@ int lua_ax_base_ClippingRectangleNode_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 0) { @@ -51777,7 +51726,7 @@ int lua_ax_base_ClippingRectangleNode_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 1) { @@ -51848,7 +51797,7 @@ int lua_ax_base_DrawNode_drawPoint(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::Vec2 arg0; double arg1; @@ -51868,7 +51817,7 @@ int lua_ax_base_DrawNode_drawPoint(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 4) + if (argc == 4) { ax::Vec2 arg0; double arg1; @@ -51927,7 +51876,7 @@ int lua_ax_base_DrawNode_drawLine(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -51947,7 +51896,7 @@ int lua_ax_base_DrawNode_drawLine(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 4) + if (argc == 4) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -51970,7 +51919,7 @@ int lua_ax_base_DrawNode_drawLine(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 5) + if (argc == 5) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -51996,7 +51945,7 @@ int lua_ax_base_DrawNode_drawLine(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 6) + if (argc == 6) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -52379,7 +52328,7 @@ int lua_ax_base_DrawNode_drawStar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 5) + if (argc == 5) { ax::Vec2 arg0; double arg1; @@ -52405,7 +52354,7 @@ int lua_ax_base_DrawNode_drawStar(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 6) + if (argc == 6) { ax::Vec2 arg0; double arg1; @@ -52470,7 +52419,7 @@ int lua_ax_base_DrawNode_drawSolidStar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 6) + if (argc == 6) { ax::Vec2 arg0; double arg1; @@ -52499,7 +52448,7 @@ int lua_ax_base_DrawNode_drawSolidStar(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 7) + if (argc == 7) { ax::Vec2 arg0; double arg1; @@ -52567,7 +52516,7 @@ int lua_ax_base_DrawNode_drawQuadBezier(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 5) + if (argc == 5) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -52593,7 +52542,7 @@ int lua_ax_base_DrawNode_drawQuadBezier(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 6) + if (argc == 6) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -52658,7 +52607,7 @@ int lua_ax_base_DrawNode_drawCubicBezier(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 6) + if (argc == 6) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -52687,7 +52636,7 @@ int lua_ax_base_DrawNode_drawCubicBezier(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 7) + if (argc == 7) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -52755,7 +52704,7 @@ int lua_ax_base_DrawNode_drawDot(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::Vec2 arg0; double arg1; @@ -52811,7 +52760,7 @@ int lua_ax_base_DrawNode_drawSolidRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -52831,7 +52780,7 @@ int lua_ax_base_DrawNode_drawSolidRect(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 4) + if (argc == 4) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -52854,7 +52803,7 @@ int lua_ax_base_DrawNode_drawSolidRect(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 5) + if (argc == 5) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -53362,7 +53311,7 @@ int lua_ax_base_DrawNode_setIsConvex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -53412,7 +53361,7 @@ int lua_ax_base_DrawNode_drawSegment(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -53435,7 +53384,7 @@ int lua_ax_base_DrawNode_drawSegment(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 5) + if (argc == 5) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -53461,7 +53410,7 @@ int lua_ax_base_DrawNode_drawSegment(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 6) + if (argc == 6) { ax::Vec2 arg0; ax::Vec2 arg1; @@ -53526,7 +53475,7 @@ int lua_ax_base_DrawNode_drawColoredTriangle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const ax::Vec2* arg0; const ax::Color4F* arg1; @@ -53786,7 +53735,7 @@ int lua_ax_base_DrawNode_clear(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -53833,7 +53782,7 @@ int lua_ax_base_DrawNode_getBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -53880,7 +53829,7 @@ int lua_ax_base_DrawNode_setBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::BlendFunc arg0; @@ -53930,7 +53879,7 @@ int lua_ax_base_DrawNode_setIsolated(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -53980,7 +53929,7 @@ int lua_ax_base_DrawNode_isIsolated(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -54048,7 +53997,7 @@ int lua_ax_base_DrawNode_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -54141,7 +54090,7 @@ int lua_ax_base_Label_setTTFConfig(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::_ttfConfig arg0; @@ -54191,7 +54140,7 @@ int lua_ax_base_Label_getTTFConfig(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -54377,7 +54326,7 @@ int lua_ax_base_Label_getBMFontFilePath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -54515,7 +54464,7 @@ int lua_ax_base_Label_setSystemFontName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -54565,7 +54514,7 @@ int lua_ax_base_Label_getSystemFontName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -54612,7 +54561,7 @@ int lua_ax_base_Label_setSystemFontSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -54662,7 +54611,7 @@ int lua_ax_base_Label_getSystemFontSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -54709,7 +54658,7 @@ int lua_ax_base_Label_requestSystemFontRefresh(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -54756,7 +54705,7 @@ int lua_ax_base_Label_setString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -54806,7 +54755,7 @@ int lua_ax_base_Label_getString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -54853,7 +54802,7 @@ int lua_ax_base_Label_getStringNumLines(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -54900,7 +54849,7 @@ int lua_ax_base_Label_getStringLength(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -54947,7 +54896,7 @@ int lua_ax_base_Label_setTextColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color4B arg0; @@ -54997,7 +54946,7 @@ int lua_ax_base_Label_getTextColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55044,7 +54993,7 @@ int lua_ax_base_Label_enableShadow(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55055,7 +55004,7 @@ int lua_ax_base_Label_enableShadow(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 1) + if (argc == 1) { ax::Color4B arg0; @@ -55069,7 +55018,7 @@ int lua_ax_base_Label_enableShadow(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { ax::Color4B arg0; ax::Vec2 arg1; @@ -55086,7 +55035,7 @@ int lua_ax_base_Label_enableShadow(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 3) + if (argc == 3) { ax::Color4B arg0; ax::Vec2 arg1; @@ -55142,7 +55091,7 @@ int lua_ax_base_Label_enableOutline(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color4B arg0; @@ -55156,7 +55105,7 @@ int lua_ax_base_Label_enableOutline(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { ax::Color4B arg0; double arg1; @@ -55209,7 +55158,7 @@ int lua_ax_base_Label_enableGlow(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color4B arg0; @@ -55223,7 +55172,7 @@ int lua_ax_base_Label_enableGlow(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { ax::Color4B arg0; double arg1; @@ -55276,7 +55225,7 @@ int lua_ax_base_Label_enableItalics(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55323,7 +55272,7 @@ int lua_ax_base_Label_enableBold(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55370,7 +55319,7 @@ int lua_ax_base_Label_enableUnderline(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55417,7 +55366,7 @@ int lua_ax_base_Label_enableStrikethrough(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55515,7 +55464,7 @@ int lua_ax_base_Label_isShadowEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55562,7 +55511,7 @@ int lua_ax_base_Label_getShadowOffset(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55609,7 +55558,7 @@ int lua_ax_base_Label_getShadowBlurRadius(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55656,7 +55605,7 @@ int lua_ax_base_Label_getShadowColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55703,7 +55652,7 @@ int lua_ax_base_Label_getOutlineSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55750,7 +55699,7 @@ int lua_ax_base_Label_getGlowRadius(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55797,7 +55746,7 @@ int lua_ax_base_Label_getLabelEffectType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55844,7 +55793,7 @@ int lua_ax_base_Label_getEffectColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55950,7 +55899,7 @@ int lua_ax_base_Label_getTextAlignment(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -55997,7 +55946,7 @@ int lua_ax_base_Label_setHorizontalAlignment(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::TextHAlignment arg0; @@ -56047,7 +55996,7 @@ int lua_ax_base_Label_getHorizontalAlignment(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -56094,7 +56043,7 @@ int lua_ax_base_Label_setVerticalAlignment(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::TextVAlignment arg0; @@ -56144,7 +56093,7 @@ int lua_ax_base_Label_getVerticalAlignment(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -56191,7 +56140,7 @@ int lua_ax_base_Label_setLineBreakWithoutSpace(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -56241,7 +56190,7 @@ int lua_ax_base_Label_setMaxLineWidth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -56291,7 +56240,7 @@ int lua_ax_base_Label_getMaxLineWidth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -56338,7 +56287,7 @@ int lua_ax_base_Label_setTTFFaceSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -56388,7 +56337,7 @@ int lua_ax_base_Label_getTTFFaceSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -56435,7 +56384,7 @@ int lua_ax_base_Label_setBMFontSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -56485,7 +56434,7 @@ int lua_ax_base_Label_getBMFontSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -56532,7 +56481,7 @@ int lua_ax_base_Label_enableWrap(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -56582,7 +56531,7 @@ int lua_ax_base_Label_isWrapEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -56629,7 +56578,7 @@ int lua_ax_base_Label_setOverflow(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Label::Overflow arg0; @@ -56679,7 +56628,7 @@ int lua_ax_base_Label_getOverflow(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -56726,7 +56675,7 @@ int lua_ax_base_Label_setWidth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -56776,7 +56725,7 @@ int lua_ax_base_Label_getWidth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -56823,7 +56772,7 @@ int lua_ax_base_Label_setHeight(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -56873,7 +56822,7 @@ int lua_ax_base_Label_getHeight(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -56920,7 +56869,7 @@ int lua_ax_base_Label_setDimensions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; double arg1; @@ -56973,7 +56922,7 @@ int lua_ax_base_Label_getDimensions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -57020,7 +56969,7 @@ int lua_ax_base_Label_updateContent(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -57067,7 +57016,7 @@ int lua_ax_base_Label_getLetter(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -57117,7 +57066,7 @@ int lua_ax_base_Label_setClipMarginEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -57167,7 +57116,7 @@ int lua_ax_base_Label_isClipMarginEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -57214,7 +57163,7 @@ int lua_ax_base_Label_setLineHeight(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -57264,7 +57213,7 @@ int lua_ax_base_Label_getLineHeight(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -57311,7 +57260,7 @@ int lua_ax_base_Label_setLineSpacing(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -57361,7 +57310,7 @@ int lua_ax_base_Label_getLineSpacing(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -57408,7 +57357,7 @@ int lua_ax_base_Label_getLabelType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -57455,7 +57404,7 @@ int lua_ax_base_Label_getRenderingFontSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -57502,7 +57451,7 @@ int lua_ax_base_Label_setAdditionalKerning(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -57552,7 +57501,7 @@ int lua_ax_base_Label_getAdditionalKerning(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -57599,7 +57548,7 @@ int lua_ax_base_Label_getFontAtlas(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -57646,7 +57595,7 @@ int lua_ax_base_Label_getBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -57693,7 +57642,7 @@ int lua_ax_base_Label_setBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::BlendFunc arg0; @@ -57743,7 +57692,7 @@ int lua_ax_base_Label_removeAllChildrenWithCleanup(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -58113,7 +58062,7 @@ int lua_ax_base_Label_createWithBMFont(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 6) { @@ -58141,7 +58090,7 @@ int lua_ax_base_Label_createWithBMFont(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -58157,7 +58106,7 @@ int lua_ax_base_Label_createWithBMFont(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -58176,7 +58125,7 @@ int lua_ax_base_Label_createWithBMFont(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 4) { @@ -58198,7 +58147,7 @@ int lua_ax_base_Label_createWithBMFont(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 5) { @@ -58245,7 +58194,7 @@ int lua_ax_base_Label_createWithCharMap(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 4) { @@ -58267,7 +58216,7 @@ int lua_ax_base_Label_createWithCharMap(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 4) { @@ -58289,7 +58238,7 @@ int lua_ax_base_Label_createWithCharMap(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 1) { @@ -58534,7 +58483,7 @@ int lua_ax_base_LabelAtlas_setString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -58584,7 +58533,7 @@ int lua_ax_base_LabelAtlas_getString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -58619,7 +58568,7 @@ int lua_ax_base_LabelAtlas_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -58635,7 +58584,7 @@ int lua_ax_base_LabelAtlas_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 5) { @@ -58660,7 +58609,7 @@ int lua_ax_base_LabelAtlas_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 5) { @@ -58706,7 +58655,7 @@ int lua_ax_base_LabelAtlas_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -58780,7 +58729,7 @@ int lua_ax_base_Sprite_getBatchNode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -58827,7 +58776,7 @@ int lua_ax_base_Sprite_setBatchNode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::SpriteBatchNode* arg0; @@ -58932,7 +58881,7 @@ int lua_ax_base_Sprite_getTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -59042,7 +58991,7 @@ int lua_ax_base_Sprite_setVertexRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Rect arg0; @@ -59092,7 +59041,7 @@ int lua_ax_base_Sprite_setCenterRectNormalized(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Rect arg0; @@ -59142,7 +59091,7 @@ int lua_ax_base_Sprite_getCenterRectNormalized(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -59189,7 +59138,7 @@ int lua_ax_base_Sprite_setCenterRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Rect arg0; @@ -59239,7 +59188,7 @@ int lua_ax_base_Sprite_getCenterRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -59341,7 +59290,7 @@ int lua_ax_base_Sprite_isFrameDisplayed(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::SpriteFrame* arg0; @@ -59391,7 +59340,7 @@ int lua_ax_base_Sprite_getSpriteFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -59438,7 +59387,7 @@ int lua_ax_base_Sprite_setDisplayFrameWithAnimationName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { std::string_view arg0; unsigned int arg1; @@ -59491,7 +59440,7 @@ int lua_ax_base_Sprite_isDirty(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -59538,7 +59487,7 @@ int lua_ax_base_Sprite_setDirty(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -59588,7 +59537,7 @@ int lua_ax_base_Sprite_removeAllChildrenWithCleanup(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -59638,7 +59587,7 @@ int lua_ax_base_Sprite_isTextureRectRotated(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -59685,7 +59634,7 @@ int lua_ax_base_Sprite_getAtlasIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -59732,7 +59681,7 @@ int lua_ax_base_Sprite_setAtlasIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { unsigned int arg0; @@ -59782,7 +59731,7 @@ int lua_ax_base_Sprite_getTextureRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -59829,7 +59778,7 @@ int lua_ax_base_Sprite_getTextureAtlas(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -59876,7 +59825,7 @@ int lua_ax_base_Sprite_setTextureAtlas(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::TextureAtlas* arg0; @@ -59926,7 +59875,7 @@ int lua_ax_base_Sprite_getOffsetPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -59973,7 +59922,7 @@ int lua_ax_base_Sprite_isFlippedX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -60020,7 +59969,7 @@ int lua_ax_base_Sprite_setFlippedX(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -60070,7 +60019,7 @@ int lua_ax_base_Sprite_isFlippedY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -60117,7 +60066,7 @@ int lua_ax_base_Sprite_setFlippedY(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -60167,7 +60116,7 @@ int lua_ax_base_Sprite_setStretchEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -60217,7 +60166,7 @@ int lua_ax_base_Sprite_isStretchEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -60264,7 +60213,7 @@ int lua_ax_base_Sprite_setBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::BlendFunc arg0; @@ -60314,7 +60263,7 @@ int lua_ax_base_Sprite_getBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -60361,7 +60310,7 @@ int lua_ax_base_Sprite_getResourceType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -60408,7 +60357,7 @@ int lua_ax_base_Sprite_getResourceName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -60534,7 +60483,7 @@ int lua_ax_base_Sprite_initWithSpriteFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::SpriteFrame* arg0; @@ -60584,7 +60533,7 @@ int lua_ax_base_Sprite_initWithSpriteFrameName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -60709,7 +60658,7 @@ int lua_ax_base_Sprite_initWithImageData(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Data arg0; std::string_view arg1; @@ -60762,7 +60711,7 @@ int lua_ax_base_Sprite_setVertexLayout(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -60809,7 +60758,7 @@ int lua_ax_base_Sprite_setAutoUpdatePS(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -60859,7 +60808,7 @@ int lua_ax_base_Sprite_setAutoSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -60897,7 +60846,7 @@ int lua_ax_base_Sprite_createWithTexture(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -60913,7 +60862,7 @@ int lua_ax_base_Sprite_createWithTexture(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -60932,7 +60881,7 @@ int lua_ax_base_Sprite_createWithTexture(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 1) { @@ -61038,7 +60987,7 @@ int lua_ax_base_Sprite_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -61207,7 +61156,7 @@ int lua_ax_base_LayerColor_changeWidth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -61257,7 +61206,7 @@ int lua_ax_base_LayerColor_changeHeight(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -61307,7 +61256,7 @@ int lua_ax_base_LayerColor_changeWidthAndHeight(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; double arg1; @@ -61411,7 +61360,7 @@ int lua_ax_base_LayerColor_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 3) { @@ -61430,7 +61379,7 @@ int lua_ax_base_LayerColor_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 0) { @@ -61440,7 +61389,7 @@ int lua_ax_base_LayerColor_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 1) { @@ -61474,7 +61423,7 @@ int lua_ax_base_LayerColor_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -61549,7 +61498,7 @@ int lua_ax_base_LayerGradient_setCompressedInterpolation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -61599,7 +61548,7 @@ int lua_ax_base_LayerGradient_isCompressedInterpolation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -61646,7 +61595,7 @@ int lua_ax_base_LayerGradient_setStartColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color3B arg0; @@ -61696,7 +61645,7 @@ int lua_ax_base_LayerGradient_getStartColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -61743,7 +61692,7 @@ int lua_ax_base_LayerGradient_setEndColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color3B arg0; @@ -61793,7 +61742,7 @@ int lua_ax_base_LayerGradient_getEndColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -61840,7 +61789,7 @@ int lua_ax_base_LayerGradient_setStartOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { uint16_t arg0; @@ -61890,7 +61839,7 @@ int lua_ax_base_LayerGradient_getStartOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -61937,7 +61886,7 @@ int lua_ax_base_LayerGradient_setEndOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { uint16_t arg0; @@ -61987,7 +61936,7 @@ int lua_ax_base_LayerGradient_getEndOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -62034,7 +61983,7 @@ int lua_ax_base_LayerGradient_setVector(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -62084,7 +62033,7 @@ int lua_ax_base_LayerGradient_getVector(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -62186,7 +62135,7 @@ int lua_ax_base_LayerGradient_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -62202,7 +62151,7 @@ int lua_ax_base_LayerGradient_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 0) { @@ -62212,7 +62161,7 @@ int lua_ax_base_LayerGradient_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -62252,7 +62201,7 @@ int lua_ax_base_LayerGradient_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -62336,7 +62285,7 @@ int lua_ax_base_LayerRadialGradient_setStartOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { uint16_t arg0; @@ -62386,7 +62335,7 @@ int lua_ax_base_LayerRadialGradient_getStartOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -62433,7 +62382,7 @@ int lua_ax_base_LayerRadialGradient_setEndOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { uint16_t arg0; @@ -62483,7 +62432,7 @@ int lua_ax_base_LayerRadialGradient_getEndOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -62530,7 +62479,7 @@ int lua_ax_base_LayerRadialGradient_setRadius(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -62580,7 +62529,7 @@ int lua_ax_base_LayerRadialGradient_getRadius(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -62627,7 +62576,7 @@ int lua_ax_base_LayerRadialGradient_setCenter(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -62677,7 +62626,7 @@ int lua_ax_base_LayerRadialGradient_getCenter(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -62724,7 +62673,7 @@ int lua_ax_base_LayerRadialGradient_setExpand(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -62774,7 +62723,7 @@ int lua_ax_base_LayerRadialGradient_getExpand(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -62876,7 +62825,7 @@ int lua_ax_base_LayerRadialGradient_getStartColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -62923,7 +62872,7 @@ int lua_ax_base_LayerRadialGradient_getStartColor3B(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -63025,7 +62974,7 @@ int lua_ax_base_LayerRadialGradient_getEndColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -63072,7 +63021,7 @@ int lua_ax_base_LayerRadialGradient_getEndColor3B(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -63119,7 +63068,7 @@ int lua_ax_base_LayerRadialGradient_setBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::BlendFunc arg0; @@ -63169,7 +63118,7 @@ int lua_ax_base_LayerRadialGradient_getBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -63216,7 +63165,7 @@ int lua_ax_base_LayerRadialGradient_initWithColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 5) + if (argc == 5) { ax::Color4B arg0; ax::Color4B arg1; @@ -63266,7 +63215,7 @@ int lua_ax_base_LayerRadialGradient_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 0) { @@ -63276,7 +63225,7 @@ int lua_ax_base_LayerRadialGradient_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 5) { @@ -63322,7 +63271,7 @@ int lua_ax_base_LayerRadialGradient_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -63412,7 +63361,7 @@ int lua_ax_base_LayerMultiplex_addLayer(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -63521,7 +63470,7 @@ int lua_ax_base_LayerMultiplex_switchToAndReleaseMe(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -63571,7 +63520,7 @@ int lua_ax_base_LayerMultiplex_initWithArray(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -63608,7 +63557,7 @@ int lua_ax_base_LayerMultiplex_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -63682,7 +63631,7 @@ int lua_ax_base_MenuItem_rect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -63729,7 +63678,7 @@ int lua_ax_base_MenuItem_activate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -63776,7 +63725,7 @@ int lua_ax_base_MenuItem_selected(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -63823,7 +63772,7 @@ int lua_ax_base_MenuItem_unselected(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -63870,7 +63819,7 @@ int lua_ax_base_MenuItem_isEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -63917,7 +63866,7 @@ int lua_ax_base_MenuItem_setEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -63967,7 +63916,7 @@ int lua_ax_base_MenuItem_isSelected(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -64001,7 +63950,7 @@ int lua_ax_base_MenuItem_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -64078,7 +64027,7 @@ int lua_ax_base_MenuItemLabel_setString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -64128,7 +64077,7 @@ int lua_ax_base_MenuItemLabel_getString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -64175,7 +64124,7 @@ int lua_ax_base_MenuItemLabel_getDisabledColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -64222,7 +64171,7 @@ int lua_ax_base_MenuItemLabel_setDisabledColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color3B arg0; @@ -64272,7 +64221,7 @@ int lua_ax_base_MenuItemLabel_getLabel(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -64319,7 +64268,7 @@ int lua_ax_base_MenuItemLabel_setLabel(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -64369,7 +64318,7 @@ int lua_ax_base_MenuItemLabel_initWithLabel(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Node* arg0; std::function arg1; @@ -64413,7 +64362,7 @@ int lua_ax_base_MenuItemLabel_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -64490,7 +64439,7 @@ int lua_ax_base_MenuItemAtlasFont_initWithString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 6) + if (argc == 6) { std::string_view arg0; std::string_view arg1; @@ -64546,7 +64495,7 @@ int lua_ax_base_MenuItemAtlasFont_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -64617,7 +64566,7 @@ int lua_ax_base_MenuItemFont_setFontSizeObj(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -64667,7 +64616,7 @@ int lua_ax_base_MenuItemFont_getFontSizeObj(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -64714,7 +64663,7 @@ int lua_ax_base_MenuItemFont_setFontNameObj(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -64764,7 +64713,7 @@ int lua_ax_base_MenuItemFont_getFontNameObj(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -64811,7 +64760,7 @@ int lua_ax_base_MenuItemFont_initWithString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { std::string_view arg0; std::function arg1; @@ -64995,7 +64944,7 @@ int lua_ax_base_MenuItemFont_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -65074,7 +65023,7 @@ int lua_ax_base_MenuItemSprite_getNormalImage(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -65121,7 +65070,7 @@ int lua_ax_base_MenuItemSprite_setNormalImage(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -65171,7 +65120,7 @@ int lua_ax_base_MenuItemSprite_getSelectedImage(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -65218,7 +65167,7 @@ int lua_ax_base_MenuItemSprite_setSelectedImage(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -65268,7 +65217,7 @@ int lua_ax_base_MenuItemSprite_getDisabledImage(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -65315,7 +65264,7 @@ int lua_ax_base_MenuItemSprite_setDisabledImage(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -65365,7 +65314,7 @@ int lua_ax_base_MenuItemSprite_selected(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -65412,7 +65361,7 @@ int lua_ax_base_MenuItemSprite_unselected(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -65459,7 +65408,7 @@ int lua_ax_base_MenuItemSprite_setEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -65509,7 +65458,7 @@ int lua_ax_base_MenuItemSprite_initWithNormalSprite(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { ax::Node* arg0; ax::Node* arg1; @@ -65559,7 +65508,7 @@ int lua_ax_base_MenuItemSprite_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -65639,7 +65588,7 @@ int lua_ax_base_MenuItemImage_setNormalSpriteFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::SpriteFrame* arg0; @@ -65689,7 +65638,7 @@ int lua_ax_base_MenuItemImage_setSelectedSpriteFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::SpriteFrame* arg0; @@ -65739,7 +65688,7 @@ int lua_ax_base_MenuItemImage_setDisabledSpriteFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::SpriteFrame* arg0; @@ -65789,7 +65738,7 @@ int lua_ax_base_MenuItemImage_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -65836,7 +65785,7 @@ int lua_ax_base_MenuItemImage_initWithNormalImage(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { std::string_view arg0; std::string_view arg1; @@ -65886,7 +65835,7 @@ int lua_ax_base_MenuItemImage_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -65961,7 +65910,7 @@ int lua_ax_base_MenuItemToggle_addSubItem(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::MenuItem* arg0; @@ -66011,7 +65960,7 @@ int lua_ax_base_MenuItemToggle_getSelectedItem(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -66058,7 +66007,7 @@ int lua_ax_base_MenuItemToggle_getSelectedIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -66105,7 +66054,7 @@ int lua_ax_base_MenuItemToggle_setSelectedIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { unsigned int arg0; @@ -66155,7 +66104,7 @@ int lua_ax_base_MenuItemToggle_setSubItems(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -66205,7 +66154,7 @@ int lua_ax_base_MenuItemToggle_initWithItem(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::MenuItem* arg0; @@ -66242,7 +66191,7 @@ int lua_ax_base_MenuItemToggle_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -66318,7 +66267,7 @@ int lua_ax_base_Menu_alignItemsVertically(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -66365,7 +66314,7 @@ int lua_ax_base_Menu_alignItemsVerticallyWithPadding(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -66415,7 +66364,7 @@ int lua_ax_base_Menu_alignItemsHorizontally(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -66462,7 +66411,7 @@ int lua_ax_base_Menu_alignItemsHorizontallyWithPadding(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -66512,7 +66461,7 @@ int lua_ax_base_Menu_isEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -66559,7 +66508,7 @@ int lua_ax_base_Menu_setEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -66609,7 +66558,7 @@ int lua_ax_base_Menu_initWithArray(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -66646,7 +66595,7 @@ int lua_ax_base_Menu_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -66723,7 +66672,7 @@ int lua_ax_base_MotionStreak_getTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -66770,7 +66719,7 @@ int lua_ax_base_MotionStreak_setTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -66820,7 +66769,7 @@ int lua_ax_base_MotionStreak_setBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::BlendFunc arg0; @@ -66870,7 +66819,7 @@ int lua_ax_base_MotionStreak_getBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -66917,7 +66866,7 @@ int lua_ax_base_MotionStreak_tintWithColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color3B arg0; @@ -66967,7 +66916,7 @@ int lua_ax_base_MotionStreak_reset(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -67014,7 +66963,7 @@ int lua_ax_base_MotionStreak_isFastMode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -67061,7 +67010,7 @@ int lua_ax_base_MotionStreak_setFastMode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -67111,7 +67060,7 @@ int lua_ax_base_MotionStreak_getStroke(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -67158,7 +67107,7 @@ int lua_ax_base_MotionStreak_setStroke(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -67208,7 +67157,7 @@ int lua_ax_base_MotionStreak_isStartingPositionInitialized(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -67255,7 +67204,7 @@ int lua_ax_base_MotionStreak_setStartingPositionInitialized(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -67380,7 +67329,7 @@ int lua_ax_base_MotionStreak_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 5) { @@ -67405,7 +67354,7 @@ int lua_ax_base_MotionStreak_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 5) { @@ -67451,7 +67400,7 @@ int lua_ax_base_MotionStreak_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -67582,7 +67531,7 @@ int lua_ax_base_NodeGrid_setGrid(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::GridBase* arg0; @@ -67632,7 +67581,7 @@ int lua_ax_base_NodeGrid_setTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -67682,7 +67631,7 @@ int lua_ax_base_NodeGrid_setGridRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Rect arg0; @@ -67732,7 +67681,7 @@ int lua_ax_base_NodeGrid_getGridRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -67767,7 +67716,7 @@ int lua_ax_base_NodeGrid_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 1) { @@ -67780,7 +67729,7 @@ int lua_ax_base_NodeGrid_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 0) { @@ -67811,7 +67760,7 @@ int lua_ax_base_NodeGrid_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -67887,7 +67836,7 @@ int lua_ax_base_ParticleBatchNode_insertChild(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::ParticleSystem* arg0; int arg1; @@ -67940,7 +67889,7 @@ int lua_ax_base_ParticleBatchNode_removeChildAtIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { int arg0; bool arg1; @@ -67993,7 +67942,7 @@ int lua_ax_base_ParticleBatchNode_removeAllChildrenWithCleanup(lua_State* tolua_ #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -68043,7 +67992,7 @@ int lua_ax_base_ParticleBatchNode_disableParticle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -68093,7 +68042,7 @@ int lua_ax_base_ParticleBatchNode_getTextureAtlas(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -68140,7 +68089,7 @@ int lua_ax_base_ParticleBatchNode_setTextureAtlas(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::TextureAtlas* arg0; @@ -68190,7 +68139,7 @@ int lua_ax_base_ParticleBatchNode_getTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -68237,7 +68186,7 @@ int lua_ax_base_ParticleBatchNode_setTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -68287,7 +68236,7 @@ int lua_ax_base_ParticleBatchNode_setBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::BlendFunc arg0; @@ -68337,7 +68286,7 @@ int lua_ax_base_ParticleBatchNode_getBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -68384,7 +68333,7 @@ int lua_ax_base_ParticleBatchNode_initWithTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Texture2D* arg0; int arg1; @@ -68437,7 +68386,7 @@ int lua_ax_base_ParticleBatchNode_initWithFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { std::string_view arg0; int arg1; @@ -68579,7 +68528,7 @@ int lua_ax_base_ParticleBatchNode_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -68682,7 +68631,7 @@ int lua_ax_base_SpriteFrameCache_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -68860,7 +68809,7 @@ int lua_ax_base_SpriteFrameCache_addSpriteFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::SpriteFrame* arg0; std::string_view arg1; @@ -68913,7 +68862,7 @@ int lua_ax_base_SpriteFrameCache_isSpriteFramesWithFileLoaded(lua_State* tolua_S #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -68963,7 +68912,7 @@ int lua_ax_base_SpriteFrameCache_removeSpriteFrames(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -69010,7 +68959,7 @@ int lua_ax_base_SpriteFrameCache_removeUnusedSpriteFrames(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -69057,7 +69006,7 @@ int lua_ax_base_SpriteFrameCache_removeUnusedSpriteSheets(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -69104,7 +69053,7 @@ int lua_ax_base_SpriteFrameCache_removeSpriteFrameByName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -69154,7 +69103,7 @@ int lua_ax_base_SpriteFrameCache_removeSpriteFramesFromFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -69204,7 +69153,7 @@ int lua_ax_base_SpriteFrameCache_removeSpriteFramesFromFileContent(lua_State* to #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -69254,7 +69203,7 @@ int lua_ax_base_SpriteFrameCache_removeSpriteFramesFromTexture(lua_State* tolua_ #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -69304,7 +69253,7 @@ int lua_ax_base_SpriteFrameCache_getSpriteFrameByName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -69354,7 +69303,7 @@ int lua_ax_base_SpriteFrameCache_reloadTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -69404,7 +69353,7 @@ int lua_ax_base_SpriteFrameCache_findFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -69454,7 +69403,7 @@ int lua_ax_base_SpriteFrameCache_getSpriteFrameName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::SpriteFrame* arg0; @@ -69504,7 +69453,7 @@ int lua_ax_base_SpriteFrameCache_eraseFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -69554,7 +69503,7 @@ int lua_ax_base_SpriteFrameCache_addSpriteFrameCapInset(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::SpriteFrame* arg0; ax::Rect arg1; @@ -69610,7 +69559,7 @@ int lua_ax_base_SpriteFrameCache_deregisterSpriteSheetLoader(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { unsigned int arg0; @@ -69660,7 +69609,7 @@ int lua_ax_base_SpriteFrameCache_getSpriteSheetLoader(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { unsigned int arg0; @@ -69818,7 +69767,7 @@ int lua_ax_base_ParticleData_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -69868,7 +69817,7 @@ int lua_ax_base_ParticleData_release(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -69915,7 +69864,7 @@ int lua_ax_base_ParticleData_getMaxCount(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -69962,7 +69911,7 @@ int lua_ax_base_ParticleData_copyParticle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { int arg0; int arg1; @@ -70002,7 +69951,7 @@ int lua_ax_base_ParticleData_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -70336,7 +70285,7 @@ int lua_ax_base_ParticleEmissionMaskCache_removeMask(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -70386,7 +70335,7 @@ int lua_ax_base_ParticleEmissionMaskCache_removeAllMasks(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -70491,7 +70440,7 @@ int lua_ax_base_ParticleSystem_addParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -70505,7 +70454,7 @@ int lua_ax_base_ParticleSystem_addParticles(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { int arg0; int arg1; @@ -70522,7 +70471,7 @@ int lua_ax_base_ParticleSystem_addParticles(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 3) + if (argc == 3) { int arg0; int arg1; @@ -70578,7 +70527,7 @@ int lua_ax_base_ParticleSystem_stopSystem(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -70625,7 +70574,7 @@ int lua_ax_base_ParticleSystem_resetSystem(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -70672,7 +70621,7 @@ int lua_ax_base_ParticleSystem_isFull(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -70719,7 +70668,7 @@ int lua_ax_base_ParticleSystem_updateParticleQuads(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -70766,7 +70715,7 @@ int lua_ax_base_ParticleSystem_postStep(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -70813,7 +70762,7 @@ int lua_ax_base_ParticleSystem_updateWithNoTime(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -70860,7 +70809,7 @@ int lua_ax_base_ParticleSystem_isAutoRemoveOnFinish(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -70907,7 +70856,7 @@ int lua_ax_base_ParticleSystem_setAutoRemoveOnFinish(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -70957,7 +70906,7 @@ int lua_ax_base_ParticleSystem_getGravity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -71004,7 +70953,7 @@ int lua_ax_base_ParticleSystem_setGravity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -71054,7 +71003,7 @@ int lua_ax_base_ParticleSystem_getSpeed(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -71101,7 +71050,7 @@ int lua_ax_base_ParticleSystem_setSpeed(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -71151,7 +71100,7 @@ int lua_ax_base_ParticleSystem_getSpeedVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -71198,7 +71147,7 @@ int lua_ax_base_ParticleSystem_setSpeedVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -71248,7 +71197,7 @@ int lua_ax_base_ParticleSystem_getTangentialAccel(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -71295,7 +71244,7 @@ int lua_ax_base_ParticleSystem_setTangentialAccel(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -71345,7 +71294,7 @@ int lua_ax_base_ParticleSystem_getTangentialAccelVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -71392,7 +71341,7 @@ int lua_ax_base_ParticleSystem_setTangentialAccelVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -71442,7 +71391,7 @@ int lua_ax_base_ParticleSystem_getRadialAccel(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -71489,7 +71438,7 @@ int lua_ax_base_ParticleSystem_setRadialAccel(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -71539,7 +71488,7 @@ int lua_ax_base_ParticleSystem_getRadialAccelVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -71586,7 +71535,7 @@ int lua_ax_base_ParticleSystem_setRadialAccelVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -71636,7 +71585,7 @@ int lua_ax_base_ParticleSystem_getRotationIsDir(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -71683,7 +71632,7 @@ int lua_ax_base_ParticleSystem_setRotationIsDir(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -71733,7 +71682,7 @@ int lua_ax_base_ParticleSystem_getStartRadius(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -71780,7 +71729,7 @@ int lua_ax_base_ParticleSystem_setStartRadius(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -71830,7 +71779,7 @@ int lua_ax_base_ParticleSystem_getStartRadiusVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -71877,7 +71826,7 @@ int lua_ax_base_ParticleSystem_setStartRadiusVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -71927,7 +71876,7 @@ int lua_ax_base_ParticleSystem_getEndRadius(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -71974,7 +71923,7 @@ int lua_ax_base_ParticleSystem_setEndRadius(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -72024,7 +71973,7 @@ int lua_ax_base_ParticleSystem_getEndRadiusVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -72071,7 +72020,7 @@ int lua_ax_base_ParticleSystem_setEndRadiusVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -72121,7 +72070,7 @@ int lua_ax_base_ParticleSystem_getRotatePerSecond(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -72168,7 +72117,7 @@ int lua_ax_base_ParticleSystem_setRotatePerSecond(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -72218,7 +72167,7 @@ int lua_ax_base_ParticleSystem_getRotatePerSecondVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -72265,7 +72214,7 @@ int lua_ax_base_ParticleSystem_setRotatePerSecondVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -72315,7 +72264,7 @@ int lua_ax_base_ParticleSystem_isActive(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -72362,7 +72311,7 @@ int lua_ax_base_ParticleSystem_isBlendAdditive(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -72409,7 +72358,7 @@ int lua_ax_base_ParticleSystem_setBlendAdditive(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -72459,7 +72408,7 @@ int lua_ax_base_ParticleSystem_getBatchNode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -72506,7 +72455,7 @@ int lua_ax_base_ParticleSystem_setBatchNode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ParticleBatchNode* arg0; @@ -72556,7 +72505,7 @@ int lua_ax_base_ParticleSystem_getAtlasIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -72603,7 +72552,7 @@ int lua_ax_base_ParticleSystem_setAtlasIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -72653,7 +72602,7 @@ int lua_ax_base_ParticleSystem_getParticleCount(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -72700,7 +72649,7 @@ int lua_ax_base_ParticleSystem_getDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -72747,7 +72696,7 @@ int lua_ax_base_ParticleSystem_setDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -72797,7 +72746,7 @@ int lua_ax_base_ParticleSystem_getSourcePosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -72844,7 +72793,7 @@ int lua_ax_base_ParticleSystem_setSourcePosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -72894,7 +72843,7 @@ int lua_ax_base_ParticleSystem_getPosVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -72941,7 +72890,7 @@ int lua_ax_base_ParticleSystem_setPosVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -72991,7 +72940,7 @@ int lua_ax_base_ParticleSystem_getLife(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -73038,7 +72987,7 @@ int lua_ax_base_ParticleSystem_setLife(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -73088,7 +73037,7 @@ int lua_ax_base_ParticleSystem_getLifeVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -73135,7 +73084,7 @@ int lua_ax_base_ParticleSystem_setLifeVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -73185,7 +73134,7 @@ int lua_ax_base_ParticleSystem_getAngle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -73232,7 +73181,7 @@ int lua_ax_base_ParticleSystem_setAngle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -73282,7 +73231,7 @@ int lua_ax_base_ParticleSystem_getAngleVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -73329,7 +73278,7 @@ int lua_ax_base_ParticleSystem_setAngleVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -73379,7 +73328,7 @@ int lua_ax_base_ParticleSystem_getEmitterMode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -73426,7 +73375,7 @@ int lua_ax_base_ParticleSystem_setEmitterMode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ParticleSystem::Mode arg0; @@ -73476,7 +73425,7 @@ int lua_ax_base_ParticleSystem_getStartSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -73523,7 +73472,7 @@ int lua_ax_base_ParticleSystem_setStartSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -73573,7 +73522,7 @@ int lua_ax_base_ParticleSystem_getStartSizeVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -73620,7 +73569,7 @@ int lua_ax_base_ParticleSystem_setStartSizeVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -73670,7 +73619,7 @@ int lua_ax_base_ParticleSystem_getEndSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -73717,7 +73666,7 @@ int lua_ax_base_ParticleSystem_setEndSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -73767,7 +73716,7 @@ int lua_ax_base_ParticleSystem_getEndSizeVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -73814,7 +73763,7 @@ int lua_ax_base_ParticleSystem_setEndSizeVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -73864,7 +73813,7 @@ int lua_ax_base_ParticleSystem_getStartColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -73911,7 +73860,7 @@ int lua_ax_base_ParticleSystem_setStartColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color4F arg0; @@ -73961,7 +73910,7 @@ int lua_ax_base_ParticleSystem_getStartColorVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -74008,7 +73957,7 @@ int lua_ax_base_ParticleSystem_setStartColorVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color4F arg0; @@ -74058,7 +74007,7 @@ int lua_ax_base_ParticleSystem_getEndColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -74105,7 +74054,7 @@ int lua_ax_base_ParticleSystem_setEndColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color4F arg0; @@ -74155,7 +74104,7 @@ int lua_ax_base_ParticleSystem_getEndColorVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -74202,7 +74151,7 @@ int lua_ax_base_ParticleSystem_setEndColorVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color4F arg0; @@ -74252,7 +74201,7 @@ int lua_ax_base_ParticleSystem_useHSV(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -74302,7 +74251,7 @@ int lua_ax_base_ParticleSystem_isHSV(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -74349,7 +74298,7 @@ int lua_ax_base_ParticleSystem_getHue(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -74396,7 +74345,7 @@ int lua_ax_base_ParticleSystem_setHue(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -74446,7 +74395,7 @@ int lua_ax_base_ParticleSystem_getHueVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -74493,7 +74442,7 @@ int lua_ax_base_ParticleSystem_setHueVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -74543,7 +74492,7 @@ int lua_ax_base_ParticleSystem_getHSV(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -74590,7 +74539,7 @@ int lua_ax_base_ParticleSystem_setHSV(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::HSV arg0; @@ -74641,7 +74590,7 @@ int lua_ax_base_ParticleSystem_getHSVVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -74688,7 +74637,7 @@ int lua_ax_base_ParticleSystem_setHSVVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::HSV arg0; @@ -74739,7 +74688,7 @@ int lua_ax_base_ParticleSystem_getStartSpin(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -74786,7 +74735,7 @@ int lua_ax_base_ParticleSystem_setStartSpin(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -74836,7 +74785,7 @@ int lua_ax_base_ParticleSystem_getStartSpinVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -74883,7 +74832,7 @@ int lua_ax_base_ParticleSystem_setStartSpinVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -74933,7 +74882,7 @@ int lua_ax_base_ParticleSystem_getEndSpin(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -74980,7 +74929,7 @@ int lua_ax_base_ParticleSystem_setEndSpin(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -75030,7 +74979,7 @@ int lua_ax_base_ParticleSystem_getEndSpinVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -75077,7 +75026,7 @@ int lua_ax_base_ParticleSystem_setEndSpinVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -75127,7 +75076,7 @@ int lua_ax_base_ParticleSystem_getSpawnAngle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -75174,7 +75123,7 @@ int lua_ax_base_ParticleSystem_setSpawnAngle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -75224,7 +75173,7 @@ int lua_ax_base_ParticleSystem_getSpawnAngleVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -75271,7 +75220,7 @@ int lua_ax_base_ParticleSystem_setSpawnAngleVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -75321,7 +75270,7 @@ int lua_ax_base_ParticleSystem_getSpawnFadeIn(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -75368,7 +75317,7 @@ int lua_ax_base_ParticleSystem_setSpawnFadeIn(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -75418,7 +75367,7 @@ int lua_ax_base_ParticleSystem_getSpawnFadeInVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -75465,7 +75414,7 @@ int lua_ax_base_ParticleSystem_setSpawnFadeInVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -75515,7 +75464,7 @@ int lua_ax_base_ParticleSystem_getSpawnScaleIn(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -75562,7 +75511,7 @@ int lua_ax_base_ParticleSystem_setSpawnScaleIn(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -75612,7 +75561,7 @@ int lua_ax_base_ParticleSystem_getSpawnScaleInVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -75659,7 +75608,7 @@ int lua_ax_base_ParticleSystem_setSpawnScaleInVar(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -75709,7 +75658,7 @@ int lua_ax_base_ParticleSystem_getEmissionRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -75756,7 +75705,7 @@ int lua_ax_base_ParticleSystem_setEmissionRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -75806,7 +75755,7 @@ int lua_ax_base_ParticleSystem_getTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -75853,7 +75802,7 @@ int lua_ax_base_ParticleSystem_setTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -75903,7 +75852,7 @@ int lua_ax_base_ParticleSystem_setLifeAnimation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -75953,7 +75902,7 @@ int lua_ax_base_ParticleSystem_setEmitterAnimation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -76003,7 +75952,7 @@ int lua_ax_base_ParticleSystem_setLoopAnimation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -76053,7 +76002,7 @@ int lua_ax_base_ParticleSystem_isLifeAnimated(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -76100,7 +76049,7 @@ int lua_ax_base_ParticleSystem_isEmitterAnimated(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -76147,7 +76096,7 @@ int lua_ax_base_ParticleSystem_isLoopAnimated(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -76194,7 +76143,7 @@ int lua_ax_base_ParticleSystem_getTotalAnimationIndices(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -76241,7 +76190,7 @@ int lua_ax_base_ParticleSystem_setAnimationReverse(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -76291,7 +76240,7 @@ int lua_ax_base_ParticleSystem_isAnimationReversed(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -76338,7 +76287,7 @@ int lua_ax_base_ParticleSystem_resetAnimationIndices(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -76385,7 +76334,7 @@ int lua_ax_base_ParticleSystem_resetAnimationDescriptors(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -76432,7 +76381,7 @@ int lua_ax_base_ParticleSystem_setMultiAnimationRandomSpecific(lua_State* tolua_ #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::vector arg0; @@ -76482,7 +76431,7 @@ int lua_ax_base_ParticleSystem_setMultiAnimationRandom(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -76719,7 +76668,7 @@ int lua_ax_base_ParticleSystem_setRectForUndefinedIndices(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Rect arg0; @@ -76880,7 +76829,7 @@ int lua_ax_base_ParticleSystem_setAnimationSpeedTimescaleIndependent(lua_State* #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -76930,7 +76879,7 @@ int lua_ax_base_ParticleSystem_isAnimationSpeedTimescaleIndependent(lua_State* t #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -76977,7 +76926,7 @@ int lua_ax_base_ParticleSystem_setEmissionShapes(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -77027,7 +76976,7 @@ int lua_ax_base_ParticleSystem_isEmissionShapes(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -77074,7 +77023,7 @@ int lua_ax_base_ParticleSystem_resetEmissionShapes(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -77121,7 +77070,7 @@ int lua_ax_base_ParticleSystem_addEmissionShape(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::EmissionShape arg0; @@ -77172,7 +77121,7 @@ int lua_ax_base_ParticleSystem_setEmissionShape(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { unsigned short arg0; ax::EmissionShape arg1; @@ -77226,7 +77175,7 @@ int lua_ax_base_ParticleSystem_getPositionType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -77273,7 +77222,7 @@ int lua_ax_base_ParticleSystem_setPositionType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ParticleSystem::PositionType arg0; @@ -77323,7 +77272,7 @@ int lua_ax_base_ParticleSystem_simulate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -77334,7 +77283,7 @@ int lua_ax_base_ParticleSystem_simulate(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 1) + if (argc == 1) { double arg0; @@ -77348,7 +77297,7 @@ int lua_ax_base_ParticleSystem_simulate(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { double arg0; double arg1; @@ -77401,7 +77350,7 @@ int lua_ax_base_ParticleSystem_resimulate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -77412,7 +77361,7 @@ int lua_ax_base_ParticleSystem_resimulate(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 1) + if (argc == 1) { double arg0; @@ -77426,7 +77375,7 @@ int lua_ax_base_ParticleSystem_resimulate(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { double arg0; double arg1; @@ -77479,7 +77428,7 @@ int lua_ax_base_ParticleSystem_getTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -77526,7 +77475,7 @@ int lua_ax_base_ParticleSystem_setTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -77576,7 +77525,7 @@ int lua_ax_base_ParticleSystem_setBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::BlendFunc arg0; @@ -77626,7 +77575,7 @@ int lua_ax_base_ParticleSystem_getBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -77673,7 +77622,7 @@ int lua_ax_base_ParticleSystem_getResourceFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -77720,7 +77669,7 @@ int lua_ax_base_ParticleSystem_start(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -77767,7 +77716,7 @@ int lua_ax_base_ParticleSystem_stop(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -77814,7 +77763,7 @@ int lua_ax_base_ParticleSystem_setSourcePositionCompatible(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -77864,7 +77813,7 @@ int lua_ax_base_ParticleSystem_isSourcePositionCompatible(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -77911,7 +77860,7 @@ int lua_ax_base_ParticleSystem_initWithFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -78020,7 +77969,7 @@ int lua_ax_base_ParticleSystem_initWithTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -78070,7 +78019,7 @@ int lua_ax_base_ParticleSystem_isPaused(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -78117,7 +78066,7 @@ int lua_ax_base_ParticleSystem_pauseEmissions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -78164,7 +78113,7 @@ int lua_ax_base_ParticleSystem_resumeEmissions(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -78211,7 +78160,7 @@ int lua_ax_base_ParticleSystem_getFixedFPS(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -78258,7 +78207,7 @@ int lua_ax_base_ParticleSystem_setFixedFPS(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -78269,7 +78218,7 @@ int lua_ax_base_ParticleSystem_setFixedFPS(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 1) + if (argc == 1) { double arg0; @@ -78319,7 +78268,7 @@ int lua_ax_base_ParticleSystem_getTimeScale(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -78366,7 +78315,7 @@ int lua_ax_base_ParticleSystem_setTimeScale(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -78377,7 +78326,7 @@ int lua_ax_base_ParticleSystem_setTimeScale(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 1) + if (argc == 1) { double arg0; @@ -78986,7 +78935,7 @@ int lua_ax_base_ParticleSystem_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -79225,7 +79174,7 @@ int lua_ax_base_ParticleSystemQuad_setDisplayFrame(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::SpriteFrame* arg0; @@ -79275,7 +79224,7 @@ int lua_ax_base_ParticleSystemQuad_setTextureWithRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Texture2D* arg0; ax::Rect arg1; @@ -79328,7 +79277,7 @@ int lua_ax_base_ParticleSystemQuad_listenRendererRecreated(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::EventCustom* arg0; @@ -79366,7 +79315,7 @@ int lua_ax_base_ParticleSystemQuad_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 1) { @@ -79379,7 +79328,7 @@ int lua_ax_base_ParticleSystemQuad_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 0) { @@ -79389,7 +79338,7 @@ int lua_ax_base_ParticleSystemQuad_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 1) { @@ -79459,7 +79408,7 @@ int lua_ax_base_ParticleSystemQuad_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -79591,7 +79540,7 @@ int lua_ax_base_ParticleFire_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -79663,7 +79612,7 @@ int lua_ax_base_ParticleFireworks_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -79710,7 +79659,7 @@ int lua_ax_base_ParticleFireworks_initWithTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -79817,7 +79766,7 @@ int lua_ax_base_ParticleFireworks_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -79891,7 +79840,7 @@ int lua_ax_base_ParticleSun_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -79938,7 +79887,7 @@ int lua_ax_base_ParticleSun_initWithTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -80045,7 +79994,7 @@ int lua_ax_base_ParticleSun_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -80119,7 +80068,7 @@ int lua_ax_base_ParticleGalaxy_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -80166,7 +80115,7 @@ int lua_ax_base_ParticleGalaxy_initWithTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -80273,7 +80222,7 @@ int lua_ax_base_ParticleGalaxy_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -80347,7 +80296,7 @@ int lua_ax_base_ParticleFlower_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -80394,7 +80343,7 @@ int lua_ax_base_ParticleFlower_initWithTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -80501,7 +80450,7 @@ int lua_ax_base_ParticleFlower_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -80575,7 +80524,7 @@ int lua_ax_base_ParticleMeteor_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -80622,7 +80571,7 @@ int lua_ax_base_ParticleMeteor_initWithTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -80729,7 +80678,7 @@ int lua_ax_base_ParticleMeteor_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -80803,7 +80752,7 @@ int lua_ax_base_ParticleSpiral_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -80850,7 +80799,7 @@ int lua_ax_base_ParticleSpiral_initWithTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -80957,7 +80906,7 @@ int lua_ax_base_ParticleSpiral_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -81031,7 +80980,7 @@ int lua_ax_base_ParticleExplosion_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -81078,7 +81027,7 @@ int lua_ax_base_ParticleExplosion_initWithTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -81185,7 +81134,7 @@ int lua_ax_base_ParticleExplosion_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -81259,7 +81208,7 @@ int lua_ax_base_ParticleSmoke_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -81306,7 +81255,7 @@ int lua_ax_base_ParticleSmoke_initWithTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -81413,7 +81362,7 @@ int lua_ax_base_ParticleSmoke_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -81487,7 +81436,7 @@ int lua_ax_base_ParticleSnow_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -81534,7 +81483,7 @@ int lua_ax_base_ParticleSnow_initWithTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -81641,7 +81590,7 @@ int lua_ax_base_ParticleSnow_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -81715,7 +81664,7 @@ int lua_ax_base_ParticleRain_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -81762,7 +81711,7 @@ int lua_ax_base_ParticleRain_initWithTotalParticles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -81869,7 +81818,7 @@ int lua_ax_base_ParticleRain_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -81943,7 +81892,7 @@ int lua_ax_base_ProgressTimer_getType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -81990,7 +81939,7 @@ int lua_ax_base_ProgressTimer_getPercentage(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -82037,7 +81986,7 @@ int lua_ax_base_ProgressTimer_getSprite(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -82084,7 +82033,7 @@ int lua_ax_base_ProgressTimer_setPercentage(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -82134,7 +82083,7 @@ int lua_ax_base_ProgressTimer_setSprite(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Sprite* arg0; @@ -82184,7 +82133,7 @@ int lua_ax_base_ProgressTimer_setType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ProgressTimer::Type arg0; @@ -82234,7 +82183,7 @@ int lua_ax_base_ProgressTimer_isReverseDirection(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -82281,7 +82230,7 @@ int lua_ax_base_ProgressTimer_setReverseDirection(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -82331,7 +82280,7 @@ int lua_ax_base_ProgressTimer_setMidpoint(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -82381,7 +82330,7 @@ int lua_ax_base_ProgressTimer_getMidpoint(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -82428,7 +82377,7 @@ int lua_ax_base_ProgressTimer_setBarChangeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -82478,7 +82427,7 @@ int lua_ax_base_ProgressTimer_getBarChangeRate(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -82525,7 +82474,7 @@ int lua_ax_base_ProgressTimer_initWithSprite(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Sprite* arg0; @@ -82598,7 +82547,7 @@ int lua_ax_base_ProgressTimer_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -82761,7 +82710,7 @@ int lua_ax_base_ProtectedNode_getProtectedChildByTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -82811,7 +82760,7 @@ int lua_ax_base_ProtectedNode_getProtectedChildByName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -82861,7 +82810,7 @@ int lua_ax_base_ProtectedNode_removeProtectedChild(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -82875,7 +82824,7 @@ int lua_ax_base_ProtectedNode_removeProtectedChild(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { ax::Node* arg0; bool arg1; @@ -82928,7 +82877,7 @@ int lua_ax_base_ProtectedNode_removeProtectedChildByTag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -82942,7 +82891,7 @@ int lua_ax_base_ProtectedNode_removeProtectedChildByTag(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { int arg0; bool arg1; @@ -82995,7 +82944,7 @@ int lua_ax_base_ProtectedNode_removeAllProtectedChildren(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -83042,7 +82991,7 @@ int lua_ax_base_ProtectedNode_removeAllProtectedChildrenWithCleanup(lua_State* t #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -83092,7 +83041,7 @@ int lua_ax_base_ProtectedNode_reorderProtectedChild(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Node* arg0; int arg1; @@ -83145,7 +83094,7 @@ int lua_ax_base_ProtectedNode_sortAllProtectedChildren(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -83192,7 +83141,7 @@ int lua_ax_base_ProtectedNode_getProtectedChildren(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -83239,7 +83188,7 @@ int lua_ax_base_ProtectedNode_disableCascadeColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -83286,7 +83235,7 @@ int lua_ax_base_ProtectedNode_disableCascadeOpacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -83354,7 +83303,7 @@ int lua_ax_base_ProtectedNode_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -83437,7 +83386,7 @@ int lua_ax_base_RenderTexture_begin(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -83599,7 +83548,7 @@ int lua_ax_base_RenderTexture_end(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -83646,7 +83595,7 @@ int lua_ax_base_RenderTexture_clear(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; double arg1; @@ -83705,7 +83654,7 @@ int lua_ax_base_RenderTexture_clearDepth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -83755,7 +83704,7 @@ int lua_ax_base_RenderTexture_clearStencil(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -84063,7 +84012,7 @@ int lua_ax_base_RenderTexture_getClearFlags(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -84110,7 +84059,7 @@ int lua_ax_base_RenderTexture_setClearFlags(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::backend::TargetBufferFlags arg0; @@ -84160,7 +84109,7 @@ int lua_ax_base_RenderTexture_getClearColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -84207,7 +84156,7 @@ int lua_ax_base_RenderTexture_setClearColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color4F arg0; @@ -84257,7 +84206,7 @@ int lua_ax_base_RenderTexture_getClearDepth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -84304,7 +84253,7 @@ int lua_ax_base_RenderTexture_setClearDepth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -84354,7 +84303,7 @@ int lua_ax_base_RenderTexture_getClearStencil(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -84401,7 +84350,7 @@ int lua_ax_base_RenderTexture_setClearStencil(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -84451,7 +84400,7 @@ int lua_ax_base_RenderTexture_isAutoDraw(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -84498,7 +84447,7 @@ int lua_ax_base_RenderTexture_setAutoDraw(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -84548,7 +84497,7 @@ int lua_ax_base_RenderTexture_getSprite(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -84595,7 +84544,7 @@ int lua_ax_base_RenderTexture_getRenderTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -84642,7 +84591,7 @@ int lua_ax_base_RenderTexture_setKeepMatrix(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -84692,7 +84641,7 @@ int lua_ax_base_RenderTexture_setVirtualViewport(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::Vec2 arg0; ax::Rect arg1; @@ -84748,7 +84697,7 @@ int lua_ax_base_RenderTexture_isSharedRenderTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -84910,7 +84859,7 @@ int lua_ax_base_RenderTexture_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 3) { @@ -84929,7 +84878,7 @@ int lua_ax_base_RenderTexture_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 4) { @@ -84951,7 +84900,7 @@ int lua_ax_base_RenderTexture_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 4) { @@ -84973,7 +84922,7 @@ int lua_ax_base_RenderTexture_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 5) { @@ -84998,7 +84947,7 @@ int lua_ax_base_RenderTexture_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 2) { @@ -85014,7 +84963,7 @@ int lua_ax_base_RenderTexture_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -85054,7 +85003,7 @@ int lua_ax_base_RenderTexture_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -85149,7 +85098,7 @@ int lua_ax_base_TransitionEaseScene_easeActionWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -85219,7 +85168,7 @@ int lua_ax_base_TransitionScene_finish(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -85266,7 +85215,7 @@ int lua_ax_base_TransitionScene_hideOutShowIn(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -85313,7 +85262,7 @@ int lua_ax_base_TransitionScene_getInScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -85360,7 +85309,7 @@ int lua_ax_base_TransitionScene_getDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -85407,7 +85356,7 @@ int lua_ax_base_TransitionScene_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { double arg0; ax::Scene* arg1; @@ -85485,7 +85434,7 @@ int lua_ax_base_TransitionScene_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -85561,7 +85510,7 @@ int lua_ax_base_TransitionSceneOriented_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { double arg0; ax::Scene* arg1; @@ -85644,7 +85593,7 @@ int lua_ax_base_TransitionSceneOriented_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -85741,7 +85690,7 @@ int lua_ax_base_TransitionRotoZoom_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -85837,7 +85786,7 @@ int lua_ax_base_TransitionJumpZoom_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -85908,7 +85857,7 @@ int lua_ax_base_TransitionMoveInL_action(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -85955,7 +85904,7 @@ int lua_ax_base_TransitionMoveInL_easeActionWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -86030,7 +85979,7 @@ int lua_ax_base_TransitionMoveInL_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -86128,7 +86077,7 @@ int lua_ax_base_TransitionMoveInR_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -86224,7 +86173,7 @@ int lua_ax_base_TransitionMoveInT_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -86320,7 +86269,7 @@ int lua_ax_base_TransitionMoveInB_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -86391,7 +86340,7 @@ int lua_ax_base_TransitionSlideInL_easeActionWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -86441,7 +86390,7 @@ int lua_ax_base_TransitionSlideInL_action(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -86513,7 +86462,7 @@ int lua_ax_base_TransitionSlideInL_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -86611,7 +86560,7 @@ int lua_ax_base_TransitionSlideInR_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -86707,7 +86656,7 @@ int lua_ax_base_TransitionSlideInB_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -86803,7 +86752,7 @@ int lua_ax_base_TransitionSlideInT_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -86874,7 +86823,7 @@ int lua_ax_base_TransitionShrinkGrow_easeActionWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -86949,7 +86898,7 @@ int lua_ax_base_TransitionShrinkGrow_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -87009,7 +86958,7 @@ int lua_ax_base_TransitionFlipX_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -87025,7 +86974,7 @@ int lua_ax_base_TransitionFlipX_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -87065,7 +87014,7 @@ int lua_ax_base_TransitionFlipX_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -87124,7 +87073,7 @@ int lua_ax_base_TransitionFlipY_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -87140,7 +87089,7 @@ int lua_ax_base_TransitionFlipY_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -87180,7 +87129,7 @@ int lua_ax_base_TransitionFlipY_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -87239,7 +87188,7 @@ int lua_ax_base_TransitionFlipAngular_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -87255,7 +87204,7 @@ int lua_ax_base_TransitionFlipAngular_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -87295,7 +87244,7 @@ int lua_ax_base_TransitionFlipAngular_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -87354,7 +87303,7 @@ int lua_ax_base_TransitionZoomFlipX_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -87370,7 +87319,7 @@ int lua_ax_base_TransitionZoomFlipX_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -87410,7 +87359,7 @@ int lua_ax_base_TransitionZoomFlipX_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -87469,7 +87418,7 @@ int lua_ax_base_TransitionZoomFlipY_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -87485,7 +87434,7 @@ int lua_ax_base_TransitionZoomFlipY_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -87525,7 +87474,7 @@ int lua_ax_base_TransitionZoomFlipY_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -87584,7 +87533,7 @@ int lua_ax_base_TransitionZoomFlipAngular_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -87600,7 +87549,7 @@ int lua_ax_base_TransitionZoomFlipAngular_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -87640,7 +87589,7 @@ int lua_ax_base_TransitionZoomFlipAngular_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -87766,7 +87715,7 @@ int lua_ax_base_TransitionFade_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -87782,7 +87731,7 @@ int lua_ax_base_TransitionFade_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -87822,7 +87771,7 @@ int lua_ax_base_TransitionFade_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -87919,7 +87868,7 @@ int lua_ax_base_TransitionCrossFade_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -87990,7 +87939,7 @@ int lua_ax_base_TransitionTurnOffTiles_easeActionWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -88065,7 +88014,7 @@ int lua_ax_base_TransitionTurnOffTiles_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -88137,7 +88086,7 @@ int lua_ax_base_TransitionSplitCols_action(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -88184,7 +88133,7 @@ int lua_ax_base_TransitionSplitCols_easeActionWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -88259,7 +88208,7 @@ int lua_ax_base_TransitionSplitCols_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -88357,7 +88306,7 @@ int lua_ax_base_TransitionSplitRows_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -88428,7 +88377,7 @@ int lua_ax_base_TransitionFadeTR_actionWithSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -88478,7 +88427,7 @@ int lua_ax_base_TransitionFadeTR_easeActionWithAction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ActionInterval* arg0; @@ -88553,7 +88502,7 @@ int lua_ax_base_TransitionFadeTR_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -88651,7 +88600,7 @@ int lua_ax_base_TransitionFadeBL_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -88747,7 +88696,7 @@ int lua_ax_base_TransitionFadeUp_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -88843,7 +88792,7 @@ int lua_ax_base_TransitionFadeDown_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -88914,7 +88863,7 @@ int lua_ax_base_TransitionPageTurn_initWithDuration(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { double arg0; ax::Scene* arg1; @@ -88970,7 +88919,7 @@ int lua_ax_base_TransitionPageTurn_actionWithSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -89047,7 +88996,7 @@ int lua_ax_base_TransitionPageTurn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -89145,7 +89094,7 @@ int lua_ax_base_TransitionProgress_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -89241,7 +89190,7 @@ int lua_ax_base_TransitionProgressRadialCCW_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -89337,7 +89286,7 @@ int lua_ax_base_TransitionProgressRadialCW_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -89433,7 +89382,7 @@ int lua_ax_base_TransitionProgressHorizontal_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -89529,7 +89478,7 @@ int lua_ax_base_TransitionProgressVertical_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -89625,7 +89574,7 @@ int lua_ax_base_TransitionProgressInOut_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -89721,7 +89670,7 @@ int lua_ax_base_TransitionProgressOutIn_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -89792,7 +89741,7 @@ int lua_ax_base_Camera_getCameraFlag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -89839,7 +89788,7 @@ int lua_ax_base_Camera_setCameraFlag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::CameraFlag arg0; @@ -89889,7 +89838,7 @@ int lua_ax_base_Camera_lookAt(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec3 arg0; @@ -89903,7 +89852,7 @@ int lua_ax_base_Camera_lookAt(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { ax::Vec3 arg0; ax::Vec3 arg1; @@ -89956,7 +89905,7 @@ int lua_ax_base_Camera_getProjectionMatrix(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90003,7 +89952,7 @@ int lua_ax_base_Camera_getViewMatrix(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90050,7 +89999,7 @@ int lua_ax_base_Camera_getViewProjectionMatrix(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90097,7 +90046,7 @@ int lua_ax_base_Camera_project(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec3 arg0; @@ -90147,7 +90096,7 @@ int lua_ax_base_Camera_projectGL(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec3 arg0; @@ -90197,7 +90146,7 @@ int lua_ax_base_Camera_isVisibleInFrustum(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { const ax::AABB* arg0; @@ -90247,7 +90196,7 @@ int lua_ax_base_Camera_getDepthInView(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Mat4 arg0; @@ -90297,7 +90246,7 @@ int lua_ax_base_Camera_setDepth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int32_t arg0; @@ -90347,7 +90296,7 @@ int lua_ax_base_Camera_getDepth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90394,7 +90343,7 @@ int lua_ax_base_Camera_getRenderOrder(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90441,7 +90390,7 @@ int lua_ax_base_Camera_getFOV(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90488,7 +90437,7 @@ int lua_ax_base_Camera_setFOV(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -90538,7 +90487,7 @@ int lua_ax_base_Camera_getFarPlane(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90585,7 +90534,7 @@ int lua_ax_base_Camera_setFarPlane(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -90635,7 +90584,7 @@ int lua_ax_base_Camera_getNearPlane(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90682,7 +90631,7 @@ int lua_ax_base_Camera_setNearPlane(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -90732,7 +90681,7 @@ int lua_ax_base_Camera_getZoom(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90779,7 +90728,7 @@ int lua_ax_base_Camera_setZoom(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -90829,7 +90778,7 @@ int lua_ax_base_Camera_applyZoom(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90876,7 +90825,7 @@ int lua_ax_base_Camera_clearBackground(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90923,7 +90872,7 @@ int lua_ax_base_Camera_apply(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -90970,7 +90919,7 @@ int lua_ax_base_Camera_isViewProjectionUpdated(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -91017,7 +90966,7 @@ int lua_ax_base_Camera_setBackgroundBrush(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::CameraBackgroundBrush* arg0; @@ -91067,7 +91016,7 @@ int lua_ax_base_Camera_getBackgroundBrush(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -91114,7 +91063,7 @@ int lua_ax_base_Camera_isBrushValid(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -91161,7 +91110,7 @@ int lua_ax_base_Camera_setScene(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Scene* arg0; @@ -91211,7 +91160,7 @@ int lua_ax_base_Camera_setAdditionalProjection(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Mat4 arg0; @@ -91261,7 +91210,7 @@ int lua_ax_base_Camera_initDefault(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -91308,7 +91257,7 @@ int lua_ax_base_Camera_initPerspective(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; double arg1; @@ -91367,7 +91316,7 @@ int lua_ax_base_Camera_initOrthographic(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; double arg1; @@ -91426,7 +91375,7 @@ int lua_ax_base_Camera_applyViewport(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -91717,7 +91666,7 @@ int lua_ax_base_Camera_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -91828,7 +91777,7 @@ int lua_ax_base_CameraBackgroundBrush_getBrushType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -91875,7 +91824,7 @@ int lua_ax_base_CameraBackgroundBrush_drawBackground(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Camera* arg0; @@ -91925,7 +91874,7 @@ int lua_ax_base_CameraBackgroundBrush_isValid(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -91972,7 +91921,7 @@ int lua_ax_base_CameraBackgroundBrush_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -92171,7 +92120,7 @@ int lua_ax_base_CameraBackgroundBrush_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -92249,7 +92198,7 @@ int lua_ax_base_CameraBackgroundDepthBrush_setDepth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -92322,7 +92271,7 @@ int lua_ax_base_CameraBackgroundDepthBrush_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -92394,7 +92343,7 @@ int lua_ax_base_CameraBackgroundColorBrush_setColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color4F arg0; @@ -92469,7 +92418,7 @@ int lua_ax_base_CameraBackgroundColorBrush_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -92541,7 +92490,7 @@ int lua_ax_base_CameraBackgroundSkyBoxBrush_setTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::TextureCube* arg0; @@ -92591,7 +92540,7 @@ int lua_ax_base_CameraBackgroundSkyBoxBrush_getTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -92638,7 +92587,7 @@ int lua_ax_base_CameraBackgroundSkyBoxBrush_isActived(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -92685,7 +92634,7 @@ int lua_ax_base_CameraBackgroundSkyBoxBrush_setActived(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -92735,7 +92684,7 @@ int lua_ax_base_CameraBackgroundSkyBoxBrush_setTextureValid(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -92773,7 +92722,7 @@ int lua_ax_base_CameraBackgroundSkyBoxBrush_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 0) { @@ -92783,7 +92732,7 @@ int lua_ax_base_CameraBackgroundSkyBoxBrush_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 6) { @@ -92832,7 +92781,7 @@ int lua_ax_base_CameraBackgroundSkyBoxBrush_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -92908,7 +92857,7 @@ int lua_ax_base_GridBase_beforeBlit(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -92955,7 +92904,7 @@ int lua_ax_base_GridBase_afterBlit(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -93002,7 +92951,7 @@ int lua_ax_base_GridBase_blit(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -93049,7 +92998,7 @@ int lua_ax_base_GridBase_reuse(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -93096,7 +93045,7 @@ int lua_ax_base_GridBase_calculateVertexPoints(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -93246,7 +93195,7 @@ int lua_ax_base_GridBase_isActive(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -93293,7 +93242,7 @@ int lua_ax_base_GridBase_setActive(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -93343,7 +93292,7 @@ int lua_ax_base_GridBase_getReuseGrid(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -93390,7 +93339,7 @@ int lua_ax_base_GridBase_setReuseGrid(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -93440,7 +93389,7 @@ int lua_ax_base_GridBase_getGridSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -93487,7 +93436,7 @@ int lua_ax_base_GridBase_setGridSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -93537,7 +93486,7 @@ int lua_ax_base_GridBase_getStep(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -93584,7 +93533,7 @@ int lua_ax_base_GridBase_setStep(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -93634,7 +93583,7 @@ int lua_ax_base_GridBase_isTextureFlipped(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -93681,7 +93630,7 @@ int lua_ax_base_GridBase_setTextureFlipped(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -93731,7 +93680,7 @@ int lua_ax_base_GridBase_beforeDraw(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -93778,7 +93727,7 @@ int lua_ax_base_GridBase_afterDraw(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Node* arg0; @@ -93828,7 +93777,7 @@ int lua_ax_base_GridBase_set2DProjection(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -93875,7 +93824,7 @@ int lua_ax_base_GridBase_setGridRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Rect arg0; @@ -93925,7 +93874,7 @@ int lua_ax_base_GridBase_getGridRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -94012,7 +93961,7 @@ int lua_ax_base_Grid3D_setNeedDepthTestForBlit(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -94062,7 +94011,7 @@ int lua_ax_base_Grid3D_getNeedDepthTestForBlit(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -94097,7 +94046,7 @@ int lua_ax_base_Grid3D_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -94113,7 +94062,7 @@ int lua_ax_base_Grid3D_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 1) { @@ -94126,7 +94075,7 @@ int lua_ax_base_Grid3D_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -94145,7 +94094,7 @@ int lua_ax_base_Grid3D_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 4) { @@ -94188,7 +94137,7 @@ int lua_ax_base_Grid3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -94249,7 +94198,7 @@ int lua_ax_base_TiledGrid3D_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 2) { @@ -94265,7 +94214,7 @@ int lua_ax_base_TiledGrid3D_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 1) { @@ -94278,7 +94227,7 @@ int lua_ax_base_TiledGrid3D_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 3) { @@ -94297,7 +94246,7 @@ int lua_ax_base_TiledGrid3D_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 4) { @@ -94373,7 +94322,7 @@ int lua_ax_base_BaseLight_getLightType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -94420,7 +94369,7 @@ int lua_ax_base_BaseLight_getIntensity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -94467,7 +94416,7 @@ int lua_ax_base_BaseLight_setIntensity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -94517,7 +94466,7 @@ int lua_ax_base_BaseLight_getLightFlag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -94564,7 +94513,7 @@ int lua_ax_base_BaseLight_setLightFlag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::LightFlag arg0; @@ -94614,7 +94563,7 @@ int lua_ax_base_BaseLight_setEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -94664,7 +94613,7 @@ int lua_ax_base_BaseLight_isEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -94737,7 +94686,7 @@ int lua_ax_base_DirectionLight_setDirection(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec3 arg0; @@ -94787,7 +94736,7 @@ int lua_ax_base_DirectionLight_getDirection(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -94834,7 +94783,7 @@ int lua_ax_base_DirectionLight_getDirectionInWorld(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -94906,7 +94855,7 @@ int lua_ax_base_DirectionLight_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -94980,7 +94929,7 @@ int lua_ax_base_PointLight_getRange(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95027,7 +94976,7 @@ int lua_ax_base_PointLight_setRange(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -95104,7 +95053,7 @@ int lua_ax_base_PointLight_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95177,7 +95126,7 @@ int lua_ax_base_SpotLight_setDirection(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec3 arg0; @@ -95227,7 +95176,7 @@ int lua_ax_base_SpotLight_getDirection(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95274,7 +95223,7 @@ int lua_ax_base_SpotLight_getDirectionInWorld(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95321,7 +95270,7 @@ int lua_ax_base_SpotLight_setRange(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -95371,7 +95320,7 @@ int lua_ax_base_SpotLight_getRange(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95418,7 +95367,7 @@ int lua_ax_base_SpotLight_setInnerAngle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -95468,7 +95417,7 @@ int lua_ax_base_SpotLight_getInnerAngle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95515,7 +95464,7 @@ int lua_ax_base_SpotLight_getCosInnerAngle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95562,7 +95511,7 @@ int lua_ax_base_SpotLight_setOuterAngle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -95612,7 +95561,7 @@ int lua_ax_base_SpotLight_getOuterAngle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95659,7 +95608,7 @@ int lua_ax_base_SpotLight_getCosOuterAngle(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95739,7 +95688,7 @@ int lua_ax_base_SpotLight_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95844,7 +95793,7 @@ int lua_ax_base_AmbientLight_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95915,7 +95864,7 @@ int lua_ax_base_RenderState_getName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -95962,7 +95911,7 @@ int lua_ax_base_RenderState_bindPass(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Pass* arg0; ax::MeshCommand* arg1; @@ -96036,7 +95985,7 @@ int lua_ax_base_Technique_addPass(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Pass* arg0; @@ -96086,7 +96035,7 @@ int lua_ax_base_Technique_getName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -96133,7 +96082,7 @@ int lua_ax_base_Technique_getPassByIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ssize_t arg0; @@ -96183,7 +96132,7 @@ int lua_ax_base_Technique_getPassCount(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -96230,7 +96179,7 @@ int lua_ax_base_Technique_getPasses(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -96277,7 +96226,7 @@ int lua_ax_base_Technique_clone(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -96324,7 +96273,7 @@ int lua_ax_base_Technique_setMaterial(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Material* arg0; @@ -96476,7 +96425,7 @@ int lua_ax_base_Material_draw(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 8) + if (argc == 8) { ax::MeshCommand* arg0; double arg1; @@ -96547,7 +96496,7 @@ int lua_ax_base_Material_getName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -96594,7 +96543,7 @@ int lua_ax_base_Material_setName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -96644,7 +96593,7 @@ int lua_ax_base_Material_getTechniqueByName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -96694,7 +96643,7 @@ int lua_ax_base_Material_getTechniqueByIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ssize_t arg0; @@ -96744,7 +96693,7 @@ int lua_ax_base_Material_getTechnique(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -96791,7 +96740,7 @@ int lua_ax_base_Material_getTechniques(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -96838,7 +96787,7 @@ int lua_ax_base_Material_getTechniqueCount(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -96885,7 +96834,7 @@ int lua_ax_base_Material_addTechnique(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Technique* arg0; @@ -96935,7 +96884,7 @@ int lua_ax_base_Material_setTechnique(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -96985,7 +96934,7 @@ int lua_ax_base_Material_clone(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -97032,7 +96981,7 @@ int lua_ax_base_Material_getRenderState(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -97079,7 +97028,7 @@ int lua_ax_base_Material_setPrimitiveType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::backend::PrimitiveType arg0; @@ -97129,7 +97078,7 @@ int lua_ax_base_Material_getPrimitiveType(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -97176,7 +97125,7 @@ int lua_ax_base_Material_setTransparent(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -97226,7 +97175,7 @@ int lua_ax_base_Material_isTransparent(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -97273,7 +97222,7 @@ int lua_ax_base_Material_setForce2DQueue(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -97323,7 +97272,7 @@ int lua_ax_base_Material_isForce2DQueue(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -97518,7 +97467,7 @@ int lua_ax_base_Pass_getProgramState(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -97565,7 +97514,7 @@ int lua_ax_base_Pass_draw(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 8) + if (argc == 8) { ax::MeshCommand* arg0; double arg1; @@ -97636,7 +97585,7 @@ int lua_ax_base_Pass_setVertexAttribBinding(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::VertexAttribBinding* arg0; @@ -97686,7 +97635,7 @@ int lua_ax_base_Pass_getVertexAttributeBinding(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -97733,7 +97682,7 @@ int lua_ax_base_Pass_setName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -97783,7 +97732,7 @@ int lua_ax_base_Pass_getName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -97830,7 +97779,7 @@ int lua_ax_base_Pass_clone(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -97877,7 +97826,7 @@ int lua_ax_base_Pass_setTechnique(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Technique* arg0; @@ -97927,7 +97876,7 @@ int lua_ax_base_Pass_updateMVPUniform(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Mat4 arg0; @@ -97977,7 +97926,7 @@ int lua_ax_base_Pass_setUniformTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { unsigned int arg0; ax::backend::TextureBackend* arg1; @@ -98030,7 +97979,7 @@ int lua_ax_base_Pass_setUniformNormTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { unsigned int arg0; ax::backend::TextureBackend* arg1; @@ -98083,7 +98032,7 @@ int lua_ax_base_Pass_setUniformColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98137,7 +98086,7 @@ int lua_ax_base_Pass_setUniformMatrixPalette(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98191,7 +98140,7 @@ int lua_ax_base_Pass_setUniformDirLightColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98245,7 +98194,7 @@ int lua_ax_base_Pass_setUniformDirLightDir(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98299,7 +98248,7 @@ int lua_ax_base_Pass_setUniformPointLightColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98353,7 +98302,7 @@ int lua_ax_base_Pass_setUniformPointLightPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98407,7 +98356,7 @@ int lua_ax_base_Pass_setUniformPointLightRangeInverse(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98461,7 +98410,7 @@ int lua_ax_base_Pass_setUniformSpotLightColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98515,7 +98464,7 @@ int lua_ax_base_Pass_setUniformSpotLightPosition(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98569,7 +98518,7 @@ int lua_ax_base_Pass_setUniformSpotLightDir(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98623,7 +98572,7 @@ int lua_ax_base_Pass_setUniformSpotLightInnerAngleCos(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98677,7 +98626,7 @@ int lua_ax_base_Pass_setUniformSpotLightOuterAngleCos(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98731,7 +98680,7 @@ int lua_ax_base_Pass_setUniformSpotLightRangeInverse(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98785,7 +98734,7 @@ int lua_ax_base_Pass_setUniformAmbientLigthColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { const void* arg0; unsigned int arg1; @@ -98959,7 +98908,7 @@ int lua_ax_base_Renderer_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99006,7 +98955,7 @@ int lua_ax_base_Renderer_addCallbackCommand(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::function arg0; @@ -99024,7 +98973,7 @@ int lua_ax_base_Renderer_addCallbackCommand(lua_State* tolua_S) lua_settop(tolua_S, 1); return 1; } - if (argc == 2) + if (argc == 2) { std::function arg0; double arg1; @@ -99140,7 +99089,7 @@ int lua_ax_base_Renderer_getNextGroupCommand(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99187,7 +99136,7 @@ int lua_ax_base_Renderer_pushGroup(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -99237,7 +99186,7 @@ int lua_ax_base_Renderer_popGroup(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99284,7 +99233,7 @@ int lua_ax_base_Renderer_createRenderQueue(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99331,7 +99280,7 @@ int lua_ax_base_Renderer_render(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99378,7 +99327,7 @@ int lua_ax_base_Renderer_clean(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99425,7 +99374,7 @@ int lua_ax_base_Renderer_getDrawnBatches(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99472,7 +99421,7 @@ int lua_ax_base_Renderer_addDrawnBatches(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ssize_t arg0; @@ -99522,7 +99471,7 @@ int lua_ax_base_Renderer_getDrawnVertices(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99569,7 +99518,7 @@ int lua_ax_base_Renderer_addDrawnVertices(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ssize_t arg0; @@ -99619,7 +99568,7 @@ int lua_ax_base_Renderer_clearDrawStats(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99666,7 +99615,7 @@ int lua_ax_base_Renderer_getRenderTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99713,7 +99662,7 @@ int lua_ax_base_Renderer_setRenderTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::backend::RenderTarget* arg0; @@ -99763,7 +99712,7 @@ int lua_ax_base_Renderer_getDefaultRenderTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99810,7 +99759,7 @@ int lua_ax_base_Renderer_getOffscreenRenderTarget(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99857,7 +99806,7 @@ int lua_ax_base_Renderer_clear(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 5) + if (argc == 5) { ax::backend::TargetBufferFlags arg0; ax::Color4F arg1; @@ -99919,7 +99868,7 @@ int lua_ax_base_Renderer_getClearColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -99966,7 +99915,7 @@ int lua_ax_base_Renderer_getClearDepth(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100013,7 +99962,7 @@ int lua_ax_base_Renderer_getClearStencil(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100060,7 +100009,7 @@ int lua_ax_base_Renderer_getClearFlag(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100107,7 +100056,7 @@ int lua_ax_base_Renderer_setDepthTest(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -100157,7 +100106,7 @@ int lua_ax_base_Renderer_setDepthWrite(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -100207,7 +100156,7 @@ int lua_ax_base_Renderer_setDepthCompareFunction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::backend::CompareFunction arg0; @@ -100257,7 +100206,7 @@ int lua_ax_base_Renderer_getDepthTest(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100304,7 +100253,7 @@ int lua_ax_base_Renderer_getDepthWrite(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100351,7 +100300,7 @@ int lua_ax_base_Renderer_getDepthCompareFunction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100398,7 +100347,7 @@ int lua_ax_base_Renderer_setStencilTest(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -100448,7 +100397,7 @@ int lua_ax_base_Renderer_setStencilCompareFunction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::backend::CompareFunction arg0; unsigned int arg1; @@ -100504,7 +100453,7 @@ int lua_ax_base_Renderer_setStencilOperation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::backend::StencilOperation arg0; ax::backend::StencilOperation arg1; @@ -100560,7 +100509,7 @@ int lua_ax_base_Renderer_setStencilWriteMask(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { unsigned int arg0; @@ -100610,7 +100559,7 @@ int lua_ax_base_Renderer_getStencilTest(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100657,7 +100606,7 @@ int lua_ax_base_Renderer_getStencilFailureOperation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100704,7 +100653,7 @@ int lua_ax_base_Renderer_getStencilPassDepthFailureOperation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100751,7 +100700,7 @@ int lua_ax_base_Renderer_getStencilDepthPassOperation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100798,7 +100747,7 @@ int lua_ax_base_Renderer_getStencilCompareFunction(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100845,7 +100794,7 @@ int lua_ax_base_Renderer_getStencilReadMask(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100892,7 +100841,7 @@ int lua_ax_base_Renderer_getStencilWriteMask(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100939,7 +100888,7 @@ int lua_ax_base_Renderer_getStencilReferenceValue(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -100986,7 +100935,7 @@ int lua_ax_base_Renderer_setDepthStencilDesc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::backend::DepthStencilDescriptor arg0; @@ -101037,7 +100986,7 @@ int lua_ax_base_Renderer_getDepthStencilDesc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -101084,7 +101033,7 @@ int lua_ax_base_Renderer_setCullMode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::backend::CullMode arg0; @@ -101134,7 +101083,7 @@ int lua_ax_base_Renderer_getCullMode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -101181,7 +101130,7 @@ int lua_ax_base_Renderer_setWinding(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::backend::Winding arg0; @@ -101231,7 +101180,7 @@ int lua_ax_base_Renderer_getWinding(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -101278,7 +101227,7 @@ int lua_ax_base_Renderer_setViewPort(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { int arg0; int arg1; @@ -101337,7 +101286,7 @@ int lua_ax_base_Renderer_getViewport(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -101384,7 +101333,7 @@ int lua_ax_base_Renderer_setScissorTest(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -101434,7 +101383,7 @@ int lua_ax_base_Renderer_setScissorRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { double arg0; double arg1; @@ -101493,7 +101442,7 @@ int lua_ax_base_Renderer_getScissorTest(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -101540,7 +101489,7 @@ int lua_ax_base_Renderer_getScissorRect(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -101587,7 +101536,7 @@ int lua_ax_base_Renderer_checkVisibility(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Mat4 arg0; ax::Vec2 arg1; @@ -101640,7 +101589,7 @@ int lua_ax_base_Renderer_readPixels(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::backend::RenderTarget* arg0; std::function arg1; @@ -101697,7 +101646,7 @@ int lua_ax_base_Renderer_beginRenderPass(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -101744,7 +101693,7 @@ int lua_ax_base_Renderer_endRenderPass(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -101791,7 +101740,7 @@ int lua_ax_base_Renderer_nextCallbackCommand(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -101825,7 +101774,7 @@ int lua_ax_base_Renderer_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -101951,7 +101900,7 @@ int lua_ax_base_TextureCache_getDescription(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -102053,7 +102002,7 @@ int lua_ax_base_TextureCache_getDummyTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -102211,7 +102160,7 @@ int lua_ax_base_TextureCache_unbindImageAsync(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -102261,7 +102210,7 @@ int lua_ax_base_TextureCache_unbindAllImageAsync(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -102308,7 +102257,7 @@ int lua_ax_base_TextureCache_getTextureForKey(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -102358,7 +102307,7 @@ int lua_ax_base_TextureCache_reloadTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -102408,7 +102357,7 @@ int lua_ax_base_TextureCache_removeAllTextures(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -102455,7 +102404,7 @@ int lua_ax_base_TextureCache_removeUnusedTextures(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -102502,7 +102451,7 @@ int lua_ax_base_TextureCache_removeTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -102552,7 +102501,7 @@ int lua_ax_base_TextureCache_removeTextureForKey(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -102602,7 +102551,7 @@ int lua_ax_base_TextureCache_getCachedTextureInfo(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -102649,7 +102598,7 @@ int lua_ax_base_TextureCache_waitForQuit(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -102696,7 +102645,7 @@ int lua_ax_base_TextureCache_getTextureFilePath(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -102746,7 +102695,7 @@ int lua_ax_base_TextureCache_renameTextureWithKey(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { std::string_view arg0; std::string_view arg1; @@ -102856,7 +102805,7 @@ int lua_ax_base_TextureCache_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -103609,7 +103558,7 @@ int lua_ax_base_Application_setAnimationInterval(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -103659,7 +103608,7 @@ int lua_ax_base_Application_getCurrentLanguage(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -103706,7 +103655,7 @@ int lua_ax_base_Application_getCurrentLanguageCode(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -103753,7 +103702,7 @@ int lua_ax_base_Application_getTargetPlatform(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -103800,7 +103749,7 @@ int lua_ax_base_Application_getVersion(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -103847,7 +103796,7 @@ int lua_ax_base_Application_openURL(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -104125,7 +104074,7 @@ int lua_ax_base_AnimationCache_init(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -104172,7 +104121,7 @@ int lua_ax_base_AnimationCache_addAnimation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Animation* arg0; std::string_view arg1; @@ -104225,7 +104174,7 @@ int lua_ax_base_AnimationCache_removeAnimation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -104275,7 +104224,7 @@ int lua_ax_base_AnimationCache_getAnimation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -104325,7 +104274,7 @@ int lua_ax_base_AnimationCache_addAnimationsWithDictionary(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::ValueMap arg0; std::string_view arg1; @@ -104378,7 +104327,7 @@ int lua_ax_base_AnimationCache_addAnimationsWithFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -104483,7 +104432,7 @@ int lua_ax_base_AnimationCache_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -104559,7 +104508,7 @@ int lua_ax_base_SpriteBatchNode_getTextureAtlas(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -104606,7 +104555,7 @@ int lua_ax_base_SpriteBatchNode_setTextureAtlas(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::TextureAtlas* arg0; @@ -104656,7 +104605,7 @@ int lua_ax_base_SpriteBatchNode_increaseAtlasCapacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -104703,7 +104652,7 @@ int lua_ax_base_SpriteBatchNode_removeChildAtIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ssize_t arg0; bool arg1; @@ -104756,7 +104705,7 @@ int lua_ax_base_SpriteBatchNode_appendChild(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Sprite* arg0; @@ -104806,7 +104755,7 @@ int lua_ax_base_SpriteBatchNode_removeSpriteFromAtlas(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Sprite* arg0; @@ -104856,7 +104805,7 @@ int lua_ax_base_SpriteBatchNode_rebuildIndexInOrder(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Sprite* arg0; ssize_t arg1; @@ -104909,7 +104858,7 @@ int lua_ax_base_SpriteBatchNode_highestAtlasIndexInChild(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Sprite* arg0; @@ -104959,7 +104908,7 @@ int lua_ax_base_SpriteBatchNode_lowestAtlasIndexInChild(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Sprite* arg0; @@ -105009,7 +104958,7 @@ int lua_ax_base_SpriteBatchNode_atlasIndexForChild(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Sprite* arg0; int arg1; @@ -105062,7 +105011,7 @@ int lua_ax_base_SpriteBatchNode_reorderBatch(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -105112,7 +105061,7 @@ int lua_ax_base_SpriteBatchNode_getTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -105159,7 +105108,7 @@ int lua_ax_base_SpriteBatchNode_setTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -105209,7 +105158,7 @@ int lua_ax_base_SpriteBatchNode_setBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::BlendFunc arg0; @@ -105259,7 +105208,7 @@ int lua_ax_base_SpriteBatchNode_getBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -105306,7 +105255,7 @@ int lua_ax_base_SpriteBatchNode_removeAllChildrenWithCleanup(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -105356,7 +105305,7 @@ int lua_ax_base_SpriteBatchNode_insertQuadFromSprite(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Sprite* arg0; ssize_t arg1; @@ -105409,7 +105358,7 @@ int lua_ax_base_SpriteBatchNode_addSpriteWithoutQuad(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::Sprite* arg0; int arg1; @@ -105465,7 +105414,7 @@ int lua_ax_base_SpriteBatchNode_reserveCapacity(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ssize_t arg0; @@ -105515,7 +105464,7 @@ int lua_ax_base_SpriteBatchNode_initWithTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -105529,7 +105478,7 @@ int lua_ax_base_SpriteBatchNode_initWithTexture(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 2) + if (argc == 2) { ax::Texture2D* arg0; ssize_t arg1; @@ -105582,7 +105531,7 @@ int lua_ax_base_SpriteBatchNode_initWithFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -105596,7 +105545,7 @@ int lua_ax_base_SpriteBatchNode_initWithFile(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 2) + if (argc == 2) { std::string_view arg0; ssize_t arg1; @@ -105738,7 +105687,7 @@ int lua_ax_base_SpriteBatchNode_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -105831,7 +105780,7 @@ int lua_ax_base_ParallaxNode_addChild(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { ax::Node* arg0; int arg1; @@ -105890,7 +105839,7 @@ int lua_ax_base_ParallaxNode_removeAllChildrenWithCleanup(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -105961,7 +105910,7 @@ int lua_ax_base_ParallaxNode_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -106034,7 +105983,7 @@ int lua_ax_base_TMXObjectGroup_getGroupName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -106081,7 +106030,7 @@ int lua_ax_base_TMXObjectGroup_setGroupName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -106131,7 +106080,7 @@ int lua_ax_base_TMXObjectGroup_getProperty(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -106181,7 +106130,7 @@ int lua_ax_base_TMXObjectGroup_getObject(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -106231,7 +106180,7 @@ int lua_ax_base_TMXObjectGroup_getPositionOffset(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -106278,7 +106227,7 @@ int lua_ax_base_TMXObjectGroup_setPositionOffset(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -106375,7 +106324,7 @@ int lua_ax_base_TMXObjectGroup_setProperties(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ValueMap arg0; @@ -106472,7 +106421,7 @@ int lua_ax_base_TMXObjectGroup_setObjects(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ValueVector arg0; @@ -106509,7 +106458,7 @@ int lua_ax_base_TMXObjectGroup_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -106589,7 +106538,7 @@ int lua_ax_base_TMXLayerInfo_setProperties(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ValueMap arg0; @@ -106639,7 +106588,7 @@ int lua_ax_base_TMXLayerInfo_getProperties(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -106673,7 +106622,7 @@ int lua_ax_base_TMXLayerInfo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -106745,7 +106694,7 @@ int lua_ax_base_TMXTilesetInfo_getRectForGID(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { unsigned int arg0; @@ -106782,7 +106731,7 @@ int lua_ax_base_TMXTilesetInfo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -106853,7 +106802,7 @@ int lua_ax_base_TMXMapInfo_initWithTMXFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -106903,7 +106852,7 @@ int lua_ax_base_TMXMapInfo_initWithXML(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { std::string_view arg0; std::string_view arg1; @@ -106956,7 +106905,7 @@ int lua_ax_base_TMXMapInfo_parseXMLFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -107006,7 +106955,7 @@ int lua_ax_base_TMXMapInfo_parseXMLString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -107056,7 +107005,7 @@ int lua_ax_base_TMXMapInfo_getTileProperties(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -107103,7 +107052,7 @@ int lua_ax_base_TMXMapInfo_setTileProperties(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ValueMapIntKey arg0; @@ -107153,7 +107102,7 @@ int lua_ax_base_TMXMapInfo_getOrientation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -107200,7 +107149,7 @@ int lua_ax_base_TMXMapInfo_setOrientation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -107250,7 +107199,7 @@ int lua_ax_base_TMXMapInfo_getStaggerAxis(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -107297,7 +107246,7 @@ int lua_ax_base_TMXMapInfo_setStaggerAxis(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -107347,7 +107296,7 @@ int lua_ax_base_TMXMapInfo_getStaggerIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -107394,7 +107343,7 @@ int lua_ax_base_TMXMapInfo_setStaggerIndex(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -107444,7 +107393,7 @@ int lua_ax_base_TMXMapInfo_getHexSideLength(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -107491,7 +107440,7 @@ int lua_ax_base_TMXMapInfo_setHexSideLength(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -107541,7 +107490,7 @@ int lua_ax_base_TMXMapInfo_getMapSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -107588,7 +107537,7 @@ int lua_ax_base_TMXMapInfo_setMapSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -107638,7 +107587,7 @@ int lua_ax_base_TMXMapInfo_getTileSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -107685,7 +107634,7 @@ int lua_ax_base_TMXMapInfo_setTileSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -107782,7 +107731,7 @@ int lua_ax_base_TMXMapInfo_setLayers(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -107879,7 +107828,7 @@ int lua_ax_base_TMXMapInfo_setTilesets(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -107976,7 +107925,7 @@ int lua_ax_base_TMXMapInfo_setObjectGroups(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -108026,7 +107975,7 @@ int lua_ax_base_TMXMapInfo_getParentElement(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -108073,7 +108022,7 @@ int lua_ax_base_TMXMapInfo_setParentElement(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -108123,7 +108072,7 @@ int lua_ax_base_TMXMapInfo_getParentGID(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -108170,7 +108119,7 @@ int lua_ax_base_TMXMapInfo_setParentGID(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -108220,7 +108169,7 @@ int lua_ax_base_TMXMapInfo_getLayerAttribs(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -108267,7 +108216,7 @@ int lua_ax_base_TMXMapInfo_setLayerAttribs(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -108317,7 +108266,7 @@ int lua_ax_base_TMXMapInfo_isStoringCharacters(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -108364,7 +108313,7 @@ int lua_ax_base_TMXMapInfo_setStoringCharacters(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -108461,7 +108410,7 @@ int lua_ax_base_TMXMapInfo_setProperties(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ValueMap arg0; @@ -108511,7 +108460,7 @@ int lua_ax_base_TMXMapInfo_getCurrentString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -108558,7 +108507,7 @@ int lua_ax_base_TMXMapInfo_setCurrentString(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -108608,7 +108557,7 @@ int lua_ax_base_TMXMapInfo_getTMXFileName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -108655,7 +108604,7 @@ int lua_ax_base_TMXMapInfo_setTMXFileName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -108705,7 +108654,7 @@ int lua_ax_base_TMXMapInfo_getExternalTilesetFileName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -108813,7 +108762,7 @@ int lua_ax_base_TMXMapInfo_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -108924,7 +108873,7 @@ int lua_ax_base_TileMapAtlas_initWithTileFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 4) + if (argc == 4) { std::string_view arg0; std::string_view arg1; @@ -108983,7 +108932,7 @@ int lua_ax_base_TileMapAtlas_getTileAt(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -109033,7 +108982,7 @@ int lua_ax_base_TileMapAtlas_setTile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { ax::Color3B arg0; ax::Vec2 arg1; @@ -109086,7 +109035,7 @@ int lua_ax_base_TileMapAtlas_releaseMap(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -109162,7 +109111,7 @@ int lua_ax_base_TileMapAtlas_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -109304,7 +109253,7 @@ int lua_ax_base_FastTMXLayer_removeTileAt(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -109354,7 +109303,7 @@ int lua_ax_base_FastTMXLayer_getPositionAt(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -109404,7 +109353,7 @@ int lua_ax_base_FastTMXLayer_getProperty(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -109454,7 +109403,7 @@ int lua_ax_base_FastTMXLayer_setupTiles(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -109501,7 +109450,7 @@ int lua_ax_base_FastTMXLayer_getLayerName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -109548,7 +109497,7 @@ int lua_ax_base_FastTMXLayer_setLayerName(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -109598,7 +109547,7 @@ int lua_ax_base_FastTMXLayer_getLayerSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -109645,7 +109594,7 @@ int lua_ax_base_FastTMXLayer_setLayerSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -109695,7 +109644,7 @@ int lua_ax_base_FastTMXLayer_getMapTileSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -109742,7 +109691,7 @@ int lua_ax_base_FastTMXLayer_setMapTileSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -109792,7 +109741,7 @@ int lua_ax_base_FastTMXLayer_getTileSet(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -109839,7 +109788,7 @@ int lua_ax_base_FastTMXLayer_setTileSet(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::TMXTilesetInfo* arg0; @@ -109889,7 +109838,7 @@ int lua_ax_base_FastTMXLayer_getLayerOrientation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -109936,7 +109885,7 @@ int lua_ax_base_FastTMXLayer_setLayerOrientation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -110033,7 +109982,7 @@ int lua_ax_base_FastTMXLayer_setProperties(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ValueMap arg0; @@ -110083,7 +110032,7 @@ int lua_ax_base_FastTMXLayer_getTileAt(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -110133,7 +110082,7 @@ int lua_ax_base_FastTMXLayer_setupTileSprite(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::Sprite* arg0; ax::Vec2 arg1; @@ -110189,7 +110138,7 @@ int lua_ax_base_FastTMXLayer_getAnimTileCoord(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -110236,7 +110185,7 @@ int lua_ax_base_FastTMXLayer_hasTileAnimation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -110283,7 +110232,7 @@ int lua_ax_base_FastTMXLayer_getTileAnimManager(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -110330,7 +110279,7 @@ int lua_ax_base_FastTMXLayer_initWithTilesetInfo(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::TMXTilesetInfo* arg0; ax::TMXLayerInfo* arg1; @@ -110413,7 +110362,7 @@ int lua_ax_base_FastTMXLayer_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -110507,7 +110456,7 @@ int lua_ax_base_TMXTileAnimTask_start(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -110554,7 +110503,7 @@ int lua_ax_base_TMXTileAnimTask_stop(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -110601,7 +110550,7 @@ int lua_ax_base_TMXTileAnimTask_isRunning(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -110696,7 +110645,7 @@ int lua_ax_base_TMXTileAnimTask_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 3) + if (argc == 3) { ax::FastTMXLayer* arg0; ax::TMXTileAnimInfo* arg1; @@ -110720,7 +110669,7 @@ int lua_ax_base_TMXTileAnimTask_constructor(lua_State* tolua_S) toluafix_pushusertype_object(tolua_S, ID, luaID, (void*)cobj,"ax.TMXTileAnimTask"); return 1; } - if (argc == 4) + if (argc == 4) { ax::FastTMXLayer* arg0; ax::TMXTileAnimInfo* arg1; @@ -110807,7 +110756,7 @@ int lua_ax_base_TMXTileAnimManager_startAll(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -110854,7 +110803,7 @@ int lua_ax_base_TMXTileAnimManager_stopAll(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -110901,7 +110850,7 @@ int lua_ax_base_TMXTileAnimManager_getTasks(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -110971,7 +110920,7 @@ int lua_ax_base_TMXTileAnimManager_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::FastTMXLayer* arg0; @@ -111048,7 +110997,7 @@ int lua_ax_base_FastTMXTiledMap_getLayer(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -111098,7 +111047,7 @@ int lua_ax_base_FastTMXTiledMap_getObjectGroup(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -111148,7 +111097,7 @@ int lua_ax_base_FastTMXTiledMap_getProperty(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -111198,7 +111147,7 @@ int lua_ax_base_FastTMXTiledMap_getPropertiesForGID(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -111248,7 +111197,7 @@ int lua_ax_base_FastTMXTiledMap_getMapSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -111295,7 +111244,7 @@ int lua_ax_base_FastTMXTiledMap_setMapSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -111345,7 +111294,7 @@ int lua_ax_base_FastTMXTiledMap_getTileSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -111392,7 +111341,7 @@ int lua_ax_base_FastTMXTiledMap_setTileSize(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec2 arg0; @@ -111442,7 +111391,7 @@ int lua_ax_base_FastTMXTiledMap_getMapOrientation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -111489,7 +111438,7 @@ int lua_ax_base_FastTMXTiledMap_setMapOrientation(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { int arg0; @@ -111586,7 +111535,7 @@ int lua_ax_base_FastTMXTiledMap_setObjectGroups(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vector arg0; @@ -111636,7 +111585,7 @@ int lua_ax_base_FastTMXTiledMap_getProperties(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -111683,7 +111632,7 @@ int lua_ax_base_FastTMXTiledMap_setProperties(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::ValueMap arg0; @@ -111733,7 +111682,7 @@ int lua_ax_base_FastTMXTiledMap_setTileAnimEnabled(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -111783,7 +111732,7 @@ int lua_ax_base_FastTMXTiledMap_getLayerCount(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -111830,7 +111779,7 @@ int lua_ax_base_FastTMXTiledMap_getResourceFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -111877,7 +111826,7 @@ int lua_ax_base_FastTMXTiledMap_getMapInfo(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -111924,7 +111873,7 @@ int lua_ax_base_FastTMXTiledMap_getTilesetInfo(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -111974,7 +111923,7 @@ int lua_ax_base_FastTMXTiledMap_getLayers(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -112021,7 +111970,7 @@ int lua_ax_base_FastTMXTiledMap_initWithTMXFile(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -112035,7 +111984,7 @@ int lua_ax_base_FastTMXTiledMap_initWithTMXFile(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 2) + if (argc == 2) { std::string_view arg0; bool arg1; @@ -112088,7 +112037,7 @@ int lua_ax_base_FastTMXTiledMap_initWithXML(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 2) + if (argc == 2) { std::string_view arg0; std::string_view arg1; @@ -112105,7 +112054,7 @@ int lua_ax_base_FastTMXTiledMap_initWithXML(lua_State* tolua_S) tolua_pushboolean(tolua_S,(bool)ret); return 1; } - if (argc == 3) + if (argc == 3) { std::string_view arg0; std::string_view arg1; @@ -112254,7 +112203,7 @@ int lua_ax_base_FastTMXTiledMap_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -112348,7 +112297,7 @@ int lua_ax_base_MotionStreak3D_tintWithColor(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Color3B arg0; @@ -112398,7 +112347,7 @@ int lua_ax_base_MotionStreak3D_reset(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -112445,7 +112394,7 @@ int lua_ax_base_MotionStreak3D_getStroke(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -112492,7 +112441,7 @@ int lua_ax_base_MotionStreak3D_setStroke(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -112542,7 +112491,7 @@ int lua_ax_base_MotionStreak3D_isStartingPositionInitialized(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -112589,7 +112538,7 @@ int lua_ax_base_MotionStreak3D_setStartingPositionInitialized(lua_State* tolua_S #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { bool arg0; @@ -112639,7 +112588,7 @@ int lua_ax_base_MotionStreak3D_getTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -112686,7 +112635,7 @@ int lua_ax_base_MotionStreak3D_setTexture(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Texture2D* arg0; @@ -112736,7 +112685,7 @@ int lua_ax_base_MotionStreak3D_setBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::BlendFunc arg0; @@ -112786,7 +112735,7 @@ int lua_ax_base_MotionStreak3D_getBlendFunc(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -112833,7 +112782,7 @@ int lua_ax_base_MotionStreak3D_setSweepAxis(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { ax::Vec3 arg0; @@ -112883,7 +112832,7 @@ int lua_ax_base_MotionStreak3D_getSweepAxis(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -113005,7 +112954,7 @@ int lua_ax_base_MotionStreak3D_create(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - do + do { if (argc == 5) { @@ -113030,7 +112979,7 @@ int lua_ax_base_MotionStreak3D_create(lua_State* tolua_S) } } while (0); ok = true; - do + do { if (argc == 5) { @@ -113076,7 +113025,7 @@ int lua_ax_base_MotionStreak3D_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -113160,7 +113109,7 @@ int lua_ax_base_ComponentLua_getScriptObject(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 0) + if (argc == 0) { if(!ok) { @@ -113207,7 +113156,7 @@ int lua_ax_base_ComponentLua_update(lua_State* tolua_S) #endif argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { double arg0; @@ -113280,7 +113229,7 @@ int lua_ax_base_ComponentLua_constructor(lua_State* tolua_S) argc = lua_gettop(tolua_S)-1; - if (argc == 1) + if (argc == 1) { std::string_view arg0; @@ -113332,7 +113281,7 @@ int lua_register_ax_base_ComponentLua(lua_State* tolua_S) TOLUA_API int register_all_ax_base(lua_State* tolua_S) { tolua_open(tolua_S); - + tolua_module(tolua_S,"ax",0); tolua_beginmodule(tolua_S,"ax");