mirror of https://github.com/axmolengine/axmol.git
Merge pull request #16011 from CocosRobot/update_lua_bindings_1467339225
[ci skip][AUTO]: updating luabinding & jsbinding automatically
This commit is contained in:
commit
5f817eaa67
|
@ -1623,16 +1623,6 @@ getScheduler : function(
|
||||||
return cc.Scheduler;
|
return cc.Scheduler;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* @method getOrderOfArrival
|
|
||||||
* @return {int}
|
|
||||||
*/
|
|
||||||
getOrderOfArrival : function (
|
|
||||||
)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @method setActionManager
|
* @method setActionManager
|
||||||
* @param {cc.ActionManager} arg0
|
* @param {cc.ActionManager} arg0
|
||||||
|
@ -1812,16 +1802,6 @@ int
|
||||||
return cc.Node;
|
return cc.Node;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* @method setOrderOfArrival
|
|
||||||
* @param {int} arg0
|
|
||||||
*/
|
|
||||||
setOrderOfArrival : function (
|
|
||||||
int
|
|
||||||
)
|
|
||||||
{
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @method getScaleZ
|
* @method getScaleZ
|
||||||
* @return {float}
|
* @return {float}
|
||||||
|
|
|
@ -4030,24 +4030,6 @@ bool js_cocos2dx_Node_getScheduler(JSContext *cx, uint32_t argc, jsval *vp)
|
||||||
JS_ReportError(cx, "js_cocos2dx_Node_getScheduler : wrong number of arguments");
|
JS_ReportError(cx, "js_cocos2dx_Node_getScheduler : wrong number of arguments");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
bool js_cocos2dx_Node_getOrderOfArrival(JSContext *cx, uint32_t argc, jsval *vp)
|
|
||||||
{
|
|
||||||
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
|
||||||
JS::RootedObject obj(cx, args.thisv().toObjectOrNull());
|
|
||||||
js_proxy_t *proxy = jsb_get_js_proxy(obj);
|
|
||||||
cocos2d::Node* cobj = (cocos2d::Node *)(proxy ? proxy->ptr : NULL);
|
|
||||||
JSB_PRECONDITION2( cobj, cx, false, "js_cocos2dx_Node_getOrderOfArrival : Invalid Native Object");
|
|
||||||
if (argc == 0) {
|
|
||||||
int ret = cobj->getOrderOfArrival();
|
|
||||||
jsval jsret = JSVAL_NULL;
|
|
||||||
jsret = int32_to_jsval(cx, ret);
|
|
||||||
args.rval().set(jsret);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
JS_ReportError(cx, "js_cocos2dx_Node_getOrderOfArrival : wrong number of arguments: %d, was expecting %d", argc, 0);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
bool js_cocos2dx_Node_setActionManager(JSContext *cx, uint32_t argc, jsval *vp)
|
bool js_cocos2dx_Node_setActionManager(JSContext *cx, uint32_t argc, jsval *vp)
|
||||||
{
|
{
|
||||||
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
||||||
|
@ -4459,26 +4441,6 @@ bool js_cocos2dx_Node_getChildByTag(JSContext *cx, uint32_t argc, jsval *vp)
|
||||||
JS_ReportError(cx, "js_cocos2dx_Node_getChildByTag : wrong number of arguments: %d, was expecting %d", argc, 1);
|
JS_ReportError(cx, "js_cocos2dx_Node_getChildByTag : wrong number of arguments: %d, was expecting %d", argc, 1);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
bool js_cocos2dx_Node_setOrderOfArrival(JSContext *cx, uint32_t argc, jsval *vp)
|
|
||||||
{
|
|
||||||
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
|
||||||
bool ok = true;
|
|
||||||
JS::RootedObject obj(cx, args.thisv().toObjectOrNull());
|
|
||||||
js_proxy_t *proxy = jsb_get_js_proxy(obj);
|
|
||||||
cocos2d::Node* cobj = (cocos2d::Node *)(proxy ? proxy->ptr : NULL);
|
|
||||||
JSB_PRECONDITION2( cobj, cx, false, "js_cocos2dx_Node_setOrderOfArrival : Invalid Native Object");
|
|
||||||
if (argc == 1) {
|
|
||||||
int arg0 = 0;
|
|
||||||
ok &= jsval_to_int32(cx, args.get(0), (int32_t *)&arg0);
|
|
||||||
JSB_PRECONDITION2(ok, cx, false, "js_cocos2dx_Node_setOrderOfArrival : Error processing arguments");
|
|
||||||
cobj->setOrderOfArrival(arg0);
|
|
||||||
args.rval().setUndefined();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
JS_ReportError(cx, "js_cocos2dx_Node_setOrderOfArrival : wrong number of arguments: %d, was expecting %d", argc, 1);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
bool js_cocos2dx_Node_getScaleZ(JSContext *cx, uint32_t argc, jsval *vp)
|
bool js_cocos2dx_Node_getScaleZ(JSContext *cx, uint32_t argc, jsval *vp)
|
||||||
{
|
{
|
||||||
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
JS::CallArgs args = JS::CallArgsFromVp(argc, vp);
|
||||||
|
@ -5344,7 +5306,6 @@ void js_register_cocos2dx_Node(JSContext *cx, JS::HandleObject global) {
|
||||||
JS_FN("getDisplayedOpacity", js_cocos2dx_Node_getDisplayedOpacity, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("getDisplayedOpacity", js_cocos2dx_Node_getDisplayedOpacity, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
JS_FN("getLocalZOrder", js_cocos2dx_Node_getLocalZOrder, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("getLocalZOrder", js_cocos2dx_Node_getLocalZOrder, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
JS_FN("getScheduler", js_cocos2dx_Node_getScheduler, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("getScheduler", js_cocos2dx_Node_getScheduler, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
JS_FN("getOrderOfArrival", js_cocos2dx_Node_getOrderOfArrival, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
|
||||||
JS_FN("setActionManager", js_cocos2dx_Node_setActionManager, 1, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("setActionManager", js_cocos2dx_Node_setActionManager, 1, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
JS_FN("getPosition", js_cocos2dx_Node_getPosition, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("getPosition", js_cocos2dx_Node_getPosition, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
JS_FN("isRunning", js_cocos2dx_Node_isRunning, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("isRunning", js_cocos2dx_Node_isRunning, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
|
@ -5362,7 +5323,6 @@ void js_register_cocos2dx_Node(JSContext *cx, JS::HandleObject global) {
|
||||||
JS_FN("setScale", js_cocos2dx_Node_setScale, 1, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("setScale", js_cocos2dx_Node_setScale, 1, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
JS_FN("getOnExitCallback", js_cocos2dx_Node_getOnExitCallback, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("getOnExitCallback", js_cocos2dx_Node_getOnExitCallback, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
JS_FN("getChildByTag", js_cocos2dx_Node_getChildByTag, 1, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("getChildByTag", js_cocos2dx_Node_getChildByTag, 1, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
JS_FN("setOrderOfArrival", js_cocos2dx_Node_setOrderOfArrival, 1, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
|
||||||
JS_FN("getScaleZ", js_cocos2dx_Node_getScaleZ, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("getScaleZ", js_cocos2dx_Node_getScaleZ, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
JS_FN("getScaleY", js_cocos2dx_Node_getScaleY, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("getScaleY", js_cocos2dx_Node_getScaleY, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
JS_FN("getScaleX", js_cocos2dx_Node_getScaleX, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
JS_FN("getScaleX", js_cocos2dx_Node_getScaleX, 0, JSPROP_PERMANENT | JSPROP_ENUMERATE),
|
||||||
|
|
|
@ -211,7 +211,6 @@ bool js_cocos2dx_Node_setName(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_getDisplayedOpacity(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_getDisplayedOpacity(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_getLocalZOrder(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_getLocalZOrder(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_getScheduler(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_getScheduler(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_getOrderOfArrival(JSContext *cx, uint32_t argc, jsval *vp);
|
|
||||||
bool js_cocos2dx_Node_setActionManager(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_setActionManager(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_getPosition(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_getPosition(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_isRunning(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_isRunning(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
|
@ -229,7 +228,6 @@ bool js_cocos2dx_Node_setGlobalZOrder(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_setScale(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_setScale(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_getOnExitCallback(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_getOnExitCallback(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_getChildByTag(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_getChildByTag(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_setOrderOfArrival(JSContext *cx, uint32_t argc, jsval *vp);
|
|
||||||
bool js_cocos2dx_Node_getScaleZ(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_getScaleZ(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_getScaleY(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_getScaleY(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
bool js_cocos2dx_Node_getScaleX(JSContext *cx, uint32_t argc, jsval *vp);
|
bool js_cocos2dx_Node_getScaleX(JSContext *cx, uint32_t argc, jsval *vp);
|
||||||
|
|
|
@ -739,14 +739,6 @@
|
||||||
-- @param self
|
-- @param self
|
||||||
-- @return AffineTransform#AffineTransform ret (return value: cc.AffineTransform)
|
-- @return AffineTransform#AffineTransform ret (return value: cc.AffineTransform)
|
||||||
|
|
||||||
--------------------------------
|
|
||||||
-- Returns the arrival order, indicates which children is added previously.<br>
|
|
||||||
-- see `setOrderOfArrival(unsigned int)`<br>
|
|
||||||
-- return The arrival order.
|
|
||||||
-- @function [parent=#Node] getOrderOfArrival
|
|
||||||
-- @param self
|
|
||||||
-- @return int#int ret (return value: int)
|
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- Sets the ActionManager object that is used by all actions.<br>
|
-- Sets the ActionManager object that is used by all actions.<br>
|
||||||
-- warning If you set a new ActionManager, then previously created actions will be removed.<br>
|
-- warning If you set a new ActionManager, then previously created actions will be removed.<br>
|
||||||
|
@ -900,17 +892,6 @@
|
||||||
-- @param #int tag
|
-- @param #int tag
|
||||||
-- @return Node#Node ret (return value: cc.Node)
|
-- @return Node#Node ret (return value: cc.Node)
|
||||||
|
|
||||||
--------------------------------
|
|
||||||
-- Sets the arrival order when this node has a same ZOrder with other children.<br>
|
|
||||||
-- A node which called addChild subsequently will take a larger arrival order,<br>
|
|
||||||
-- If two children have the same Z order, the child with larger arrival order will be drawn later.<br>
|
|
||||||
-- warning This method is used internally for localZOrder sorting, don't change this manually<br>
|
|
||||||
-- param orderOfArrival The arrival order.
|
|
||||||
-- @function [parent=#Node] setOrderOfArrival
|
|
||||||
-- @param self
|
|
||||||
-- @param #int orderOfArrival
|
|
||||||
-- @return Node#Node self (return value: cc.Node)
|
|
||||||
|
|
||||||
--------------------------------
|
--------------------------------
|
||||||
-- Returns the scale factor on Z axis of this node<br>
|
-- Returns the scale factor on Z axis of this node<br>
|
||||||
-- see `setScaleZ(float)`<br>
|
-- see `setScaleZ(float)`<br>
|
||||||
|
|
|
@ -8198,53 +8198,6 @@ int lua_cocos2dx_Node_getParentToNodeAffineTransform(lua_State* tolua_S)
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
int lua_cocos2dx_Node_getOrderOfArrival(lua_State* tolua_S)
|
|
||||||
{
|
|
||||||
int argc = 0;
|
|
||||||
cocos2d::Node* cobj = nullptr;
|
|
||||||
bool ok = true;
|
|
||||||
|
|
||||||
#if COCOS2D_DEBUG >= 1
|
|
||||||
tolua_Error tolua_err;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#if COCOS2D_DEBUG >= 1
|
|
||||||
if (!tolua_isusertype(tolua_S,1,"cc.Node",0,&tolua_err)) goto tolua_lerror;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
cobj = (cocos2d::Node*)tolua_tousertype(tolua_S,1,0);
|
|
||||||
|
|
||||||
#if COCOS2D_DEBUG >= 1
|
|
||||||
if (!cobj)
|
|
||||||
{
|
|
||||||
tolua_error(tolua_S,"invalid 'cobj' in function 'lua_cocos2dx_Node_getOrderOfArrival'", nullptr);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
argc = lua_gettop(tolua_S)-1;
|
|
||||||
if (argc == 0)
|
|
||||||
{
|
|
||||||
if(!ok)
|
|
||||||
{
|
|
||||||
tolua_error(tolua_S,"invalid arguments in function 'lua_cocos2dx_Node_getOrderOfArrival'", nullptr);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
int ret = cobj->getOrderOfArrival();
|
|
||||||
tolua_pushnumber(tolua_S,(lua_Number)ret);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
luaL_error(tolua_S, "%s has wrong number of arguments: %d, was expecting %d \n", "cc.Node:getOrderOfArrival",argc, 0);
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
#if COCOS2D_DEBUG >= 1
|
|
||||||
tolua_lerror:
|
|
||||||
tolua_error(tolua_S,"#ferror in function 'lua_cocos2dx_Node_getOrderOfArrival'.",&tolua_err);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
int lua_cocos2dx_Node_setActionManager(lua_State* tolua_S)
|
int lua_cocos2dx_Node_setActionManager(lua_State* tolua_S)
|
||||||
{
|
{
|
||||||
int argc = 0;
|
int argc = 0;
|
||||||
|
@ -9100,56 +9053,6 @@ int lua_cocos2dx_Node_getChildByTag(lua_State* tolua_S)
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
int lua_cocos2dx_Node_setOrderOfArrival(lua_State* tolua_S)
|
|
||||||
{
|
|
||||||
int argc = 0;
|
|
||||||
cocos2d::Node* cobj = nullptr;
|
|
||||||
bool ok = true;
|
|
||||||
|
|
||||||
#if COCOS2D_DEBUG >= 1
|
|
||||||
tolua_Error tolua_err;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#if COCOS2D_DEBUG >= 1
|
|
||||||
if (!tolua_isusertype(tolua_S,1,"cc.Node",0,&tolua_err)) goto tolua_lerror;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
cobj = (cocos2d::Node*)tolua_tousertype(tolua_S,1,0);
|
|
||||||
|
|
||||||
#if COCOS2D_DEBUG >= 1
|
|
||||||
if (!cobj)
|
|
||||||
{
|
|
||||||
tolua_error(tolua_S,"invalid 'cobj' in function 'lua_cocos2dx_Node_setOrderOfArrival'", nullptr);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
argc = lua_gettop(tolua_S)-1;
|
|
||||||
if (argc == 1)
|
|
||||||
{
|
|
||||||
int arg0;
|
|
||||||
|
|
||||||
ok &= luaval_to_int32(tolua_S, 2,(int *)&arg0, "cc.Node:setOrderOfArrival");
|
|
||||||
if(!ok)
|
|
||||||
{
|
|
||||||
tolua_error(tolua_S,"invalid arguments in function 'lua_cocos2dx_Node_setOrderOfArrival'", nullptr);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
cobj->setOrderOfArrival(arg0);
|
|
||||||
lua_settop(tolua_S, 1);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
luaL_error(tolua_S, "%s has wrong number of arguments: %d, was expecting %d \n", "cc.Node:setOrderOfArrival",argc, 1);
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
#if COCOS2D_DEBUG >= 1
|
|
||||||
tolua_lerror:
|
|
||||||
tolua_error(tolua_S,"#ferror in function 'lua_cocos2dx_Node_setOrderOfArrival'.",&tolua_err);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
int lua_cocos2dx_Node_getScaleZ(lua_State* tolua_S)
|
int lua_cocos2dx_Node_getScaleZ(lua_State* tolua_S)
|
||||||
{
|
{
|
||||||
int argc = 0;
|
int argc = 0;
|
||||||
|
@ -10877,7 +10780,6 @@ int lua_register_cocos2dx_Node(lua_State* tolua_S)
|
||||||
tolua_function(tolua_S,"getLocalZOrder",lua_cocos2dx_Node_getLocalZOrder);
|
tolua_function(tolua_S,"getLocalZOrder",lua_cocos2dx_Node_getLocalZOrder);
|
||||||
tolua_function(tolua_S,"getScheduler",lua_cocos2dx_Node_getScheduler);
|
tolua_function(tolua_S,"getScheduler",lua_cocos2dx_Node_getScheduler);
|
||||||
tolua_function(tolua_S,"getParentToNodeAffineTransform",lua_cocos2dx_Node_getParentToNodeAffineTransform);
|
tolua_function(tolua_S,"getParentToNodeAffineTransform",lua_cocos2dx_Node_getParentToNodeAffineTransform);
|
||||||
tolua_function(tolua_S,"getOrderOfArrival",lua_cocos2dx_Node_getOrderOfArrival);
|
|
||||||
tolua_function(tolua_S,"setActionManager",lua_cocos2dx_Node_setActionManager);
|
tolua_function(tolua_S,"setActionManager",lua_cocos2dx_Node_setActionManager);
|
||||||
tolua_function(tolua_S,"setColor",lua_cocos2dx_Node_setColor);
|
tolua_function(tolua_S,"setColor",lua_cocos2dx_Node_setColor);
|
||||||
tolua_function(tolua_S,"isRunning",lua_cocos2dx_Node_isRunning);
|
tolua_function(tolua_S,"isRunning",lua_cocos2dx_Node_isRunning);
|
||||||
|
@ -10895,7 +10797,6 @@ int lua_register_cocos2dx_Node(lua_State* tolua_S)
|
||||||
tolua_function(tolua_S,"setGlobalZOrder",lua_cocos2dx_Node_setGlobalZOrder);
|
tolua_function(tolua_S,"setGlobalZOrder",lua_cocos2dx_Node_setGlobalZOrder);
|
||||||
tolua_function(tolua_S,"setScale",lua_cocos2dx_Node_setScale);
|
tolua_function(tolua_S,"setScale",lua_cocos2dx_Node_setScale);
|
||||||
tolua_function(tolua_S,"getChildByTag",lua_cocos2dx_Node_getChildByTag);
|
tolua_function(tolua_S,"getChildByTag",lua_cocos2dx_Node_getChildByTag);
|
||||||
tolua_function(tolua_S,"setOrderOfArrival",lua_cocos2dx_Node_setOrderOfArrival);
|
|
||||||
tolua_function(tolua_S,"getScaleZ",lua_cocos2dx_Node_getScaleZ);
|
tolua_function(tolua_S,"getScaleZ",lua_cocos2dx_Node_getScaleZ);
|
||||||
tolua_function(tolua_S,"getScaleY",lua_cocos2dx_Node_getScaleY);
|
tolua_function(tolua_S,"getScaleY",lua_cocos2dx_Node_getScaleY);
|
||||||
tolua_function(tolua_S,"getScaleX",lua_cocos2dx_Node_getScaleX);
|
tolua_function(tolua_S,"getScaleX",lua_cocos2dx_Node_getScaleX);
|
||||||
|
|
|
@ -2201,8 +2201,6 @@ int register_all_cocos2dx(lua_State* tolua_S);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue