瀏覽代碼

types (GLTFLoader): add a definition of setMeshoptDecoder

FMS_Cat 4 年之前
父節點
當前提交
6c715c7d17
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      examples/jsm/loaders/GLTFLoader.d.ts

+ 2 - 0
examples/jsm/loaders/GLTFLoader.d.ts

@@ -40,6 +40,8 @@ export class GLTFLoader extends Loader {
 	setDRACOLoader( dracoLoader: DRACOLoader ): GLTFLoader;
 	setDDSLoader( ddsLoader: DDSLoader ): GLTFLoader;
 	setKTX2Loader( ktx2Loader: KTX2Loader ): GLTFLoader;
+	setMeshoptDecoder( meshoptDecoder: /* MeshoptDecoder */ any ): GLTFLoader;
+
 	parse( data: ArrayBuffer | string, path: string, onLoad: ( gltf: GLTF ) => void, onError?: ( event: ErrorEvent ) => void ) : void;
 
 }