Skip to content

Commit

Permalink
USDZLoader: Clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Sep 6, 2022
1 parent 3ab8b6a commit 12b970f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/jsm/loaders/USDZLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class USDZLoader extends Loader {

const zip = fflate.unzipSync( new Uint8Array( buffer ) ); // eslint-disable-line no-undef

// console.log( zip );
console.log( zip );

const assets = parseAssets( zip );

Expand All @@ -216,7 +216,7 @@ class USDZLoader extends Loader {

if ( file === undefined ) {

console.warn( 'THREE.USDZLoader: No usda file found.', zip );
console.warn( 'THREE.USDZLoader: No usda file found.' );

return new Group();

Expand Down

0 comments on commit 12b970f

Please sign in to comment.