我有以下 javascript
var helloworld == cc.layer.extend({
ctor : function() { this._super(); }
init : function() { this._super(); ........}
onmix : function() { this._super(); this.layer.addChild(); }
});
我得到的错误是这this._super()
在onmix
功能上不知道,但其他地方this._super()
都很好。如果我不放在this._super()
里面,onmix
那么它就不会知道this.layer
对象。那么我该如何解决呢?
谢谢。