1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- import {
- AnimationClip,
- Camera,
- Group,
- Loader,
- LoadingManager,
- Object3D,
- Material,
- Texture
- } from '../../../src/Three';
- import { DRACOLoader } from './DRACOLoader';
- import { DDSLoader } from './DDSLoader';
- export interface GLTF {
- animations: AnimationClip[];
- scene: Group;
- scenes: Group[];
- cameras: Camera[];
- asset: {
- copyright?: string;
- generator?: string;
- version?: string;
- minVersion?: string;
- extensions?: any;
- extras?: any;
- };
- parser: GLTFParser;
- userData: any;
- }
- export class GLTFLoader extends Loader {
- constructor( manager?: LoadingManager );
- dracoLoader: DRACOLoader | null;
- ddsLoader: DDSLoader | null;
- load( url: string, onLoad: ( gltf: GLTF ) => void, onProgress?: ( event: ProgressEvent ) => void, onError?: ( event: ErrorEvent ) => void ) : void;
- setDRACOLoader( dracoLoader: DRACOLoader ): GLTFLoader;
- setDDSLoader( ddsLoader: DDSLoader ): GLTFLoader;
- parse( data: ArrayBuffer | string, path: string, onLoad: ( gltf: GLTF ) => void, onError?: ( event: ErrorEvent ) => void ) : void;
- }
- export interface GLTFReference {
- type: 'materials'|'nodes'|'textures';
- index: number;
- }
- export class GLTFParser {
- json: any;
- associations: Map<Object3D|Material|Texture, GLTFReference>;
- getDependency: ( type: string, index: number ) => Promise<any>;
- getDependencies: ( type: string ) => Promise<any[]>;
- }
|