浏览代码

TS: Clean up

Mugen87 6 年之前
父节点
当前提交
7923c2ee03
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      examples/jsm/loaders/ColladaLoader.d.ts

+ 4 - 4
examples/jsm/loaders/ColladaLoader.d.ts

@@ -1,6 +1,6 @@
 import {
 import {
-	AnimationClip,
-	LoadingManager,
+  AnimationClip,
+  LoadingManager,
   Scene
   Scene
 } from '../../../src/Three';
 } from '../../../src/Three';
 
 
@@ -9,7 +9,7 @@ export interface Collada {
   animations: AnimationClip[];
   animations: AnimationClip[];
   kinematics: object;
   kinematics: object;
   library: object;
   library: object;
-	scene: Scene;
+  scene: Scene;
 }
 }
 
 
 export class Collada {
 export class Collada {
@@ -20,7 +20,7 @@ export class Collada {
   resourcePath: string;
   resourcePath: string;
 
 
   load(url: string, onLoad: (collada: Collada) => void, onProgress?: (event: ProgressEvent) => void, onError?: (event: ErrorEvent) => void) : void;
   load(url: string, onLoad: (collada: Collada) => void, onProgress?: (event: ProgressEvent) => void, onError?: (event: ErrorEvent) => void) : void;
-	setPath(path: string) : this;
+  setPath(path: string) : this;
   setResourcePath(path: string) : this;
   setResourcePath(path: string) : this;
   setCrossOrigin(value: string): this;
   setCrossOrigin(value: string): this;