From 99204a011e678f0e13c98db0b1ca07256047e825 Mon Sep 17 00:00:00 2001 From: Matchu Date: Mon, 21 Sep 2020 06:53:54 -0700 Subject: [PATCH] remove extra arguments and comments from test --- public/animate-test.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/public/animate-test.html b/public/animate-test.html index 8c0c0dee..aad2a67f 100644 --- a/public/animate-test.html +++ b/public/animate-test.html @@ -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();