Browse Source

Merge pull request #17329 from chenshenhai/dev

fix: examples/HDRCubeTextureLoader.d.ts
Michael Herzog 6 years ago
parent
commit
19104b724b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/jsm/loaders/HDRCubeTextureLoader.d.ts

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

@@ -13,7 +13,7 @@ export class HDRCubeTextureLoader {
   path: string;
   path: string;
   type: TextureDataType;
   type: TextureDataType;
 
 
-  load(url: string, onLoad: (texture: CubeTexture) => void, onProgress?: (event: ProgressEvent) => void, onError?: (event: ErrorEvent) => void): void;
+  load(urls: string[], onLoad: (texture: CubeTexture) => void, onProgress?: (event: ProgressEvent) => void, onError?: (event: ErrorEvent) => void): void;
   setPath(value: string): this;
   setPath(value: string): this;
   setDataType(type: TextureDataType): this;
   setDataType(type: TextureDataType): this;
 }
 }