1. 程式人生 > >白鷺引擎開關音訊程式碼例項

白鷺引擎開關音訊程式碼例項

白鷺引擎
版本:5.2.8
描述:開啟和關閉音訊的程式碼例項

宣告物件

    private bgm:egret.Sound;//放屁聲音
    private bgmStop:egret.SoundChannel;//取消放屁

開啟音訊

        //播放聲音
        this.bgm = new egret.Sound();
        this.bgm.addEventListener(egret.Event.COMPLETE, function loadOver(event:egret.Event) {
            this.bgmStop
= this.bgm.play(); }, this); this.bgm.addEventListener(egret.IOErrorEvent.IO_ERROR, function loadError(event:egret.IOErrorEvent) { console.log("loaded error!"); }, this); this.bgm.load("resource/sound/bgm.mp3");

關閉音訊

 this.bgmStop.stop();