threepipe
Version:
A modern 3D viewer framework built on top of three.js, written in TypeScript, designed to make creating high-quality, modular, and extensible 3D experiences on the web simple and enjoyable.
13 lines • 698 B
TypeScript
import { FileLoader, LoadingManager, TextureDataType } from 'three';
/**
* 8bit HDR image in png format
* not properly working with files from hdrpng.js but used in {@link GLTFViewerConfigExtension}, so a slightly modified version is used here
*/
export declare class RGBEPNGLoader extends FileLoader {
type: TextureDataType;
constructor(manager?: LoadingManager);
loadAsync(url: string, onProgress?: (event: ProgressEvent) => void): Promise<any>;
parseAsync(url: string, onProgress?: (event: ProgressEvent) => void, isFloat16Data?: boolean): Promise<any>;
setDataType(value: TextureDataType): this;
}
//# sourceMappingURL=../../src/assetmanager/import/RGBEPNGLoader.d.ts.map