LegacyGLTFLoader: fix texture loading of binary glTF 1.0
@@ -649,6 +649,13 @@ THREE.LegacyGLTFLoader = ( function () {
}
+ // Blob URL
+ if ( /^blob:.*$/i.test( url ) ) {
+
+ return url;
+ }
// Relative URL
return ( path || '' ) + url;