请问Cocos Creator如何添加jsbinding

我是构建发布到windows版本的原生平台
在HelloWorld示例中,可以写:
onLoad: function () {
this.label.string = this.text;
this.label.node.
setRotation(30);
}
这个node.setRotation好像是在frameworks/cocos2d-x/cocos/scripting/js-bindings/auto/jsb_cocos2dx_auto.cpp中绑定的是不是?

JS_FN("
setRotation", js_cocos2dx_Node_setRotation, 1, JSPROP_PERMANENT | JSPROP_ENUMERATE),
我自己添加一个绑定:
JS_FN("
xxxRotation", js_cocos2dx_Node_xxxRotation, 1, JSPROP_PERMANENT | JSPROP_ENUMERATE),然后在Cocos Creator中写:
onLoad: function () {
this.label.string = this.text;
this.label.node.
xxxRotation(30);
}

提示:this.label.node.xxxRotation is not a function
我估计就不是在jsb_cocos2dx_auto.cpp中绑定的,请问
setRotation在哪里定义的呢,请问如何绑定自己的函数
xxxRotation呢?