[LayaAir 2.0]ios苹果手机,同时播放声音出现巨大杂音
刚刚接触laya一周,不知道是不是写法有问题,发现一个问题:同时播放两个音效,一个长一个短,短的播放后,长的那个音变成了杂音,特别严重,不知道怎么回事。只有ios浏览器,ios微信浏览器,ios谷歌浏览器有问题,PC谷歌浏览器,laya调试器,安卓浏览器,安卓微信浏览器都没有问题,就是ios有问题。代码如下:附件是两个音频文件
export default class GameMain extends Laya.Scene {
constructor() {
super();
//设置单例的引用方式,方便其他类引用
GameMain.instance = this;
//加载场景文件
this.loadScene("main_scene.scene");
}
setup(){
Laya.SoundManager.playMusic("music/d1.mp3", 1, new Laya.Handler(this, this.onComplete2));
this.d2m = Laya.SoundManager;
this.d2m.playSound("music/bg.mp3", 0, new Laya.Handler(this, this.onComplete2));
}
onComplete2() {
console.log("播放完成2");
}
onAwake(){
this.setup();
}
}
export default class GameMain extends Laya.Scene {
constructor() {
super();
//设置单例的引用方式,方便其他类引用
GameMain.instance = this;
//加载场景文件
this.loadScene("main_scene.scene");
}
setup(){
Laya.SoundManager.playMusic("music/d1.mp3", 1, new Laya.Handler(this, this.onComplete2));
this.d2m = Laya.SoundManager;
this.d2m.playSound("music/bg.mp3", 0, new Laya.Handler(this, this.onComplete2));
}
onComplete2() {
console.log("播放完成2");
}
onAwake(){
this.setup();
}
}
没有找到相关结果
已邀请:
要回复问题请先登录
2 个回复
张燕海
赞同来自:
Laya_z
赞同来自: