我的代码:
var queue = new createjs.LoadQueue(false);
queue.on('complete', onComplete, this);
queue.on('error', onError, this);
queue.on('progress', onProgress, this);
queue.loadManifest([
{ src: "images/ground.json", id: "1", type: createjs.Types.SPRITESHEET, crossOrigin:true }
]);
function onComplete(event) {
console.log('Complete', event);
init();
}
function onError(event) {
console.log('Error', event);
}
function onProgress(event) {
console.log('General progress', Math.round(event.loaded * 100));
}
用这个json:
{
"images": ["images/HauptmenuOhneButtons.png"],
"frames": [
[0, 0, 1920, 1080],
],
"animations": {
"background": [0]
}
}
我的结构是:
- 索引.html
- 图片/ground.json
- 图像/HauptmenuOhneButtons.png
我收到错误 FILE_LOAD_ERROR。
帮助!