diff --git a/types/three/examples/jsm/loaders/GLTFLoader.d.ts b/types/three/examples/jsm/loaders/GLTFLoader.d.ts index aadb89019..335d6c58a 100644 --- a/types/three/examples/jsm/loaders/GLTFLoader.d.ts +++ b/types/three/examples/jsm/loaders/GLTFLoader.d.ts @@ -3,6 +3,7 @@ import { BufferAttribute, BufferGeometry, Camera, + ColorSpace, FileLoader, Group, ImageBitmapLoader, @@ -112,7 +113,8 @@ export class GLTFParser { texCoord?: number | undefined; extensions?: any; }, - ) => Promise; + colorSpace?: ColorSpace | undefined, + ) => Promise; assignFinalMaterial: (object: Mesh) => void; getMaterialType: () => typeof MeshStandardMaterial; loadMaterial: (materialIndex: number) => Promise;