Browse Source

chore: fix an indent issue

FMS-Cat 4 years ago
parent
commit
e5cb0c92d1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/jsm/loaders/GLTFLoader.d.ts

+ 1 - 1
examples/jsm/loaders/GLTFLoader.d.ts

@@ -45,7 +45,7 @@ export class GLTFLoader extends Loader {
 	register( callback: ( parser: GLTFParser ) => GLTFLoaderPlugin ): GLTFLoader;
 	unregister( callback: ( parser: GLTFParser ) => GLTFLoaderPlugin ): GLTFLoader;
 
-  setKTX2Loader( ktx2Loader: KTX2Loader ): 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;