[]预加载音频文件遇到的问题
写了一段预加载音频的代码(JS飞机大战示例),
//加载声音资源
Laya.loader.load("res/sound/bloodstream_bg.mp3", Laya.Handler.create(this, onLoadedSound), null, Laya.Loader.SOUND);
// })();
function onLoadedSound(){
Laya.SoundManager.playMusic("res/sound/bloodstream_bg.mp3", 0, Laya.Handler.create(this, onComplete));
}
function onComplete(){
console.log("播放完成");
}
运行能正常运行但是控制台提示
Resources already exist,is repeated loading: D:/html5yx/project_zz/myxfj/bin/res/sound/bloodstream_bg.mp3
请问这是怎么回事。
//加载声音资源
Laya.loader.load("res/sound/bloodstream_bg.mp3", Laya.Handler.create(this, onLoadedSound), null, Laya.Loader.SOUND);
// })();
function onLoadedSound(){
Laya.SoundManager.playMusic("res/sound/bloodstream_bg.mp3", 0, Laya.Handler.create(this, onComplete));
}
function onComplete(){
console.log("播放完成");
}
运行能正常运行但是控制台提示
Resources already exist,is repeated loading: D:/html5yx/project_zz/myxfj/bin/res/sound/bloodstream_bg.mp3
请问这是怎么回事。
没有找到相关结果
已邀请:
1 个回复
qian
赞同来自:
显示的是资源已经存在