From d0c6a1523acf462ca9e6ef308b5ebf3be777c113 Mon Sep 17 00:00:00 2001 From: Pavle Goloskokovic Date: Tue, 2 May 2023 15:36:40 +0200 Subject: [PATCH] fire an event on asset to indicate that downloading has ended and parsing is about to start --- src/framework/parsers/glb-container-parser.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/framework/parsers/glb-container-parser.js b/src/framework/parsers/glb-container-parser.js index a735c237679..461d0712910 100644 --- a/src/framework/parsers/glb-container-parser.js +++ b/src/framework/parsers/glb-container-parser.js @@ -20,6 +20,7 @@ class GlbContainerParser { if (err) { callback(err); } else { + asset.fire('parse', asset); GlbParser.parse( this._getUrlWithoutParams(url.original), path.extractPath(url.load),