WaterControl/assets/Script/Load.ts
2024-07-10 18:35:07 +08:00

41 lines
980 B
TypeScript

const {ccclass, property, requireComponent} = cc._decorator;
@ccclass
export default class NewClass extends cc.Component {
@property(false)
localTest: boolean = false;
@property("")
clientTestVersion: string = "1.0.0";
@property(cc.Label)
testVersion: cc.Label = null;
start () {
window.initMgr();
cc.fx.GameConfig.init(this.localTest);
cc.fx.AudioManager.Instance.init();
this.testVersion.string = this.clientTestVersion;
}
//开始游戏,跳转至引导页面
startGame(){
cc.director.loadScene("GameScene");
// cc.director.loadScene("GuideScene");
}
//备用,用来测试跳转 指定关卡
clickBtn(event,data){
cc.fx.GameConfig.GM_INFO.custom = parseInt(data);
cc.director.loadScene("GameScene");
}
//打开排行榜
openRank(){
cc.director.loadScene("RankScene");
}
protected update(dt: number): void {
}
}