[]跟着老师打地鼠游戏写的代码,JS为什么会出错
var Game=(function(_super){
function Game(){
Game.super(this);
this.mole=new Mole() //这里会报错
}
Laya.class(Game,"Game",_super);
return Game;
})(ui.GameUI)
var GameUI=(function(_super){
function GameUI(){
this.btn_start=null;
this.audio=null;
GameUI.__super.call(this);
}
CLASS$(GameUI,'ui.GameUI',_super);
var __proto__=GameUI.prototype;
var Mole=(function(){
function Mole(btn_start){
alert(1)
};
})()
function Game(){
Game.super(this);
this.mole=new Mole() //这里会报错
}
Laya.class(Game,"Game",_super);
return Game;
})(ui.GameUI)
var GameUI=(function(_super){
function GameUI(){
this.btn_start=null;
this.audio=null;
GameUI.__super.call(this);
}
CLASS$(GameUI,'ui.GameUI',_super);
var __proto__=GameUI.prototype;
var Mole=(function(){
function Mole(btn_start){
alert(1)
};
})()
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
w1114367261
赞同来自: