白鹭引擎开关音频代码实例
程序员文章站
2024-03-16 14:38:16
...
白鹭引擎
版本: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();
上一篇: 从数组中找到 a+b=c+d 的两个数对
下一篇: 【数据结构与算法01】栈