// Learn TypeScript: // - https://docs.cocos.com/creator/manual/en/scripting/typescript.html // Learn Attribute: // - https://docs.cocos.com/creator/manual/en/scripting/reference/attributes.html // Learn life-cycle callbacks: // - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html const { ccclass, property } = cc._decorator; @ccclass export default class setUi extends cc.Component { static _instance: any; time: number = 0; @property(cc.Node) music: cc.Node = null; @property(cc.Node) effect: cc.Node = null; @property(cc.Node) vibrate: cc.Node = null; // mapInfo: number[][] = []; musicState: boolean = true; effectState: boolean = true; vibrateState: boolean = true; onLoad() { this.musicState = cc.fx.GameConfig.GM_INFO.musicOpen; this.effectState = cc.fx.GameConfig.GM_INFO.effectOpen; this.vibrateState = cc.fx.GameConfig.GM_INFO.vibrateOpen; if(this.musicState == true) { this.music.children[0].active = true; }else { this.music.children[1].active = true; } if(this.effectState == true) { this.effect.children[0].active = true; }else { this.effect.children[1].active = true; } if(this.vibrateState == true) { this.vibrate.children[0].active = true; }else { this.vibrate.children[1].active = true; } } start() { } init(time) { } clickMusic() { if (this.musicState) { this.musicState = false; cc.fx.GameConfig.GM_INFO.musicOpen = this.musicState; this.setMusicConfig(); this.music.children[0].active = false; this.music.children[1].active = true; //如果音乐关闭了,则停止音乐 cc.fx.AudioManager._instance.stopMusic(); } else { this.musicState = true; cc.fx.GameConfig.GM_INFO.musicOpen = this.musicState; this.setMusicConfig(); this.music.children[0].active = true; this.music.children[1].active = false; cc.fx.AudioManager._instance.playMusicGame(); } } setMusicConfig() { let audioInfo = { "musicOpen": cc.fx.GameConfig.GM_INFO.musicOpen, //音乐 "effectOpen": cc.fx.GameConfig.GM_INFO.effectOpen, //音效 "vibrateOpen": cc.fx.GameConfig.GM_INFO.vibrateOpen, //震动 } cc.fx.StorageMessage.setStorage("music", audioInfo); } clickEffect() { if (this.effectState) { this.effectState = false; cc.fx.GameConfig.GM_INFO.effectOpen = this.effectState; this.setMusicConfig(); this.effect.children[0].active = false; this.effect.children[1].active = true; } else { this.effectState = true; cc.fx.GameConfig.GM_INFO.effectOpen = this.effectState; this.setMusicConfig(); this.effect.children[0].active = true; this.effect.children[1].active = false; } } clickVibrate() { if (this.vibrateState) { this.vibrateState = false; cc.fx.GameConfig.GM_INFO.vibrateOpen = this.vibrateState; this.setMusicConfig(); this.vibrate.children[0].active = false; this.vibrate.children[1].active = true; } else { this.vibrateState = true; cc.fx.GameConfig.GM_INFO.vibrateOpen = this.vibrateState; this.setMusicConfig(); this.vibrate.children[0].active = true; this.vibrate.children[1].active = false; } } syncToggleState() { } //关闭ui closeUi() { cc.fx.AudioManager._instance.playEffect("anniu_little", null); this.node.active = false; } // update (dt) {} }