当我在 Cocos 2D HTML 或绑定中运行下面的代码时,它似乎没有添加我的任何函数,但会添加我的变量。
所以:
cc.Class.extend({
init: function(isDancing){
this.dancing = isDancing;
},
age : 5,
dance: function(){
return this.dancing;
}
});
变成:
function anonymous() {
this._super=null;this.age=this.age;
}
当我尝试调用 dance() 时,我会得到一个未定义的错误。