|
@@ -3,7 +3,6 @@ import { CMPTLoaderBase } from '../base/CMPTLoaderBase.js';
|
|
|
import { B3DMLoader } from './B3DMLoader.js';
|
|
|
import { PNTSLoader } from './PNTSLoader.js';
|
|
|
import { I3DMLoader } from './I3DMLoader.js';
|
|
|
-import { GLTFExtensionLoader } from './GLTFExtensionLoader.js';
|
|
|
|
|
|
export class CMPTLoader extends CMPTLoaderBase {
|
|
|
|
|
@@ -63,18 +62,6 @@ export class CMPTLoader extends CMPTLoaderBase {
|
|
|
|
|
|
}
|
|
|
|
|
|
- // 3DTILES_content_gltf
|
|
|
- case 'glb':
|
|
|
- case 'gltf':
|
|
|
- const slicedBuffer = buffer.slice();
|
|
|
- const loader = new GLTFExtensionLoader( manager );
|
|
|
- loader.workingPath = this.workingPath;
|
|
|
- loader.fetchOptions = this.fetchOptions;
|
|
|
-
|
|
|
- const promise = loader.parse( slicedBuffer.buffer );
|
|
|
- promises.push( promise );
|
|
|
- break;
|
|
|
-
|
|
|
}
|
|
|
|
|
|
}
|