English
Appearance
English
Appearance
Related references:
Tone mapping controls the final look of HDR content on screen, especially the highlights, contrast, and overall style of a model.
await api.setToneMapping(api.constants.aces_filmic, 1);The second parameter is the exposure value. Its default is 1.
api.constants provides the following values:
api.constants = {
no: 0,
linear: 1,
reinhard: 2,
cineon: 4,
aces_filmic: 5,
};Disables tone mapping. Good for baseline comparison tests.
Direct and conservative.
Traditional and stable, suitable for basic compression.
Produces a more film-like style overall.
Often one of the most practical choices for modern PBR scenes, and one of the easiest ways to get pleasing results in model presentation.
That makes it easier to tell which layer of settings is affecting the final image.