robot_2Generated
code_blocksInput

Description

The Tonemap property of the SceneCamera class provides access to the tonemapping properties of the camera. Tonemapping is a technique used in rendering to map a set of colors to another, often to approximate the appearance of high dynamic range images in a medium that has a more limited dynamic range.

Usage

Use the Tonemap property to adjust the tonemapping settings of a SceneCamera instance. This can be useful for achieving specific visual effects or ensuring that the rendered scene appears correctly on different displays.

Example

// Example of accessing the Tonemap property
SceneCamera camera = new SceneCamera();
var tonemapSettings = camera.Tonemap;

// Adjust tonemapping settings as needed
// tonemapSettings.Exposure = 1.0f; // Example setting, actual properties may vary