美文网首页Egret游戏开发
白鹭引擎如何实现开关音频的功能实例

白鹭引擎如何实现开关音频的功能实例

作者: 山与清川 | 来源:发表于2019-07-28 11:57 被阅读2次

    白鹭引擎
    版本: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();
    

    相关文章

      网友评论

        本文标题:白鹭引擎如何实现开关音频的功能实例

        本文链接:https://www.haomeiwen.com/subject/mgvurctx.html