UNPKG

threepipe

Version:

A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.

15 lines 681 B
/** * Materials variants extension * Modified from https://github.com/takahirox/three-gltf-extensions/blob/main/loaders/KHR_materials_variants/KHR_materials_variants.js * * Specification: https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_variants */ import { GLTFParser } from 'three/examples/jsm/loaders/GLTFLoader'; export declare const khrMaterialsVariantsGLTF = "KHR_materials_variants"; export declare class GLTFMaterialsVariantsExtensionImport { parser: GLTFParser; name: string; constructor(parser: GLTFParser); afterRoot(gltf: any): Promise<void>; } //# sourceMappingURL=GLTFMaterialsVariantsExtensionImport.d.ts.map