Skip to content

ToneMappingParams

ts
type ToneMappingParams = {
  exposure?: number;
  outputColorSpace?: "sRGB" | "linear";
};

Common parameters for tone mapping effects.

Properties

PropertyTypeDescription
exposure?numberThe exposure level to apply to the image before the tone mapping. Default 1
outputColorSpace?"sRGB" | "linear"The color space to output the final image in. Default "sRGB"

Released under the MIT License.