@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
18 lines (17 loc) • 434 B
TypeScript
export declare enum EXROutputType {
Float = 0,
HalfFloat = 1
}
/**
* Class used to store configuration of the exr loader
*/
export declare class ExrLoaderGlobalConfiguration {
/**
* Defines the default output type to use (Half float by default)
*/
static DefaultOutputType: EXROutputType;
/**
* Url to use to load the fflate library (for zip decompression)
*/
static FFLATEUrl: string;
}