Skip to content

Commit

Permalink
comment out mesh features
Browse files Browse the repository at this point in the history
  • Loading branch information
gkjohnson committed May 17, 2024
1 parent 3ac7f3a commit ed5cda9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/three/GLTFExtensionLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { DefaultLoadingManager } from 'three';
import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader.js';
import { LoaderBase } from '../base/LoaderBase.js';
import { GLTFCesiumRTCExtension } from './gltf/GLTFCesiumRTCExtension.js';
import { GLTFMeshFeaturesExtension } from './gltf/GLTFMeshFeaturesExtension.js';
// import { GLTFMeshFeaturesExtension } from './gltf/GLTFMeshFeaturesExtension.js';

export class GLTFExtensionLoader extends LoaderBase {

Expand All @@ -26,7 +26,7 @@ export class GLTFExtensionLoader extends LoaderBase {
loader = new GLTFLoader( manager );

loader.register( () => new GLTFCesiumRTCExtension() );
loader.register( () => new GLTFMeshFeaturesExtension() );
// loader.register( () => new GLTFMeshFeaturesExtension() );
if ( fetchOptions.credentials === 'include' && fetchOptions.mode === 'cors' ) {

loader.setCrossOrigin( 'use-credentials' );
Expand Down

0 comments on commit ed5cda9

Please sign in to comment.