HDRCubeTextureLoader.d.ts 488 B

1234567891011121314151617
  1. import {
  2. CubeTexture,
  3. LoadingManager,
  4. TextureDataType
  5. } from '../../../src/Three';
  6. import { RGBELoader } from './RGBELoader';
  7. export class HDRCubeTextureLoader {
  8. constructor(manager?: LoadingManager);
  9. manager: LoadingManager;
  10. hdrLoader: RGBELoader;
  11. path: string;
  12. load(type: TextureDataType, url: string, onLoad: (texture: CubeTexture) => void, onProgress?: (event: ProgressEvent) => void, onError?: (event: ErrorEvent) => void): void;
  13. setPath(value: string): this;
  14. }