remove extra arguments and comments from test
This commit is contained in:
parent
0bd2136dd0
commit
99204a011e
1 changed files with 2 additions and 3 deletions
|
@ -46,11 +46,11 @@
|
|||
),
|
||||
}));
|
||||
|
||||
const queue = new createjs.LoadQueue(false);
|
||||
const queue = new createjs.LoadQueue();
|
||||
const queueCompleted = new Promise((resolve) =>
|
||||
queue.on("complete", () => resolve())
|
||||
);
|
||||
queue.loadManifest(manifest, true);
|
||||
queue.loadManifest(manifest);
|
||||
await queueCompleted;
|
||||
|
||||
const spriteSheets = composition.getSpriteSheet();
|
||||
|
@ -60,7 +60,6 @@
|
|||
frames,
|
||||
});
|
||||
}
|
||||
console.log(spriteSheets);
|
||||
|
||||
const movieClip = new library.allitem_foreground_lower();
|
||||
|
||||
|
|
Loading…
Reference in a new issue