私は次の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
ありがとう。