Aar0n 没办法发图了
class Main {
constructor() {
Laya.init(480, 852);
Laya.stage.scaleMode = "showall";
Laya.stage.alignV = 'middle';
Laya.stage.alignH = 'center';
Laya.stage.screenMode = "vertical";
Laya.stage.bgColor = "#101825";
this.init()
}
init() {
// 预加载图集
Laya.loader.load("res/atlas/comp.atlas", Laya.Handler.create(this, this.onLoaded ), null, Laya.Loader.ATLAS)
}
onLoaded(){
Laya.stage.addChild(new TopUI())
Laya.stage.addChild(new TabUI())
this.getGold.on(Laya.Event.MOUSE_DOWN,this,function(){
console.log("点击事件")
})
// console.log(this.getGold)
}
}
new Main()