From fdb575f651c8edd522c73c38d1ce0013add26542 Mon Sep 17 00:00:00 2001 From: Benjamin <45743294+Hoodgail@users.noreply.github.com> Date: Sun, 9 Oct 2022 16:32:34 -0400 Subject: [PATCH] export GLTFParser I want to utilize GLTFParser without needing to clone the script in my own project since threejs' typescript exports it where the script does not. --- examples/jsm/loaders/GLTFLoader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/jsm/loaders/GLTFLoader.js b/examples/jsm/loaders/GLTFLoader.js index 4f22d5ee343382..63c683710b7d8d 100644 --- a/examples/jsm/loaders/GLTFLoader.js +++ b/examples/jsm/loaders/GLTFLoader.js @@ -4557,4 +4557,4 @@ function toTrianglesDrawMode( geometry, drawMode ) { } -export { GLTFLoader }; +export { GLTFLoader, GLTFParser };