Tilt Shift
Twirl

Tonemapping

Tonemapping is usually understood as the process of mapping color values from HDR (high dynamic range) to LDR (low dynamic range). In Unity, this means for most platforms that arbitrary 16-bit floating point color values will be mapped to traditional 8-bit values in the [0,1] range.

Note that Tonemapping will only properly work if the used camera is HDR enabled. It is also recommended to give light sources higher than normal intensity values to make use of the bigger range. Just as in real life there is huger differences in Luminance and our eyes or any capturing medium is only able to sample a certain range of that.

Tonemapping works well in conjunction with the HDR-enabled Bloom image effect. Make sure that Bloom should be applied before Tonemapping as otherwise all high ranges will be lost. Generally, any effect that can benefit from higher luminances should be scheduled before the Tonemapper (one more example being the Depth of Field image effect).

There are different ways on how to map intensities to LDR (as selected by Mode). This effect provides several techniques, two of them being adaptive (AdaptiveReinhard and AdaptiveReinhardAutoWhite), which means that color changes are carried out delayed as the change in intensities is fully registered. Cameras and the human eye have this effect. This enables interesting dynamic effects such as a simulation of the natural adaption happening when entering or leaving a dark tunnel into bright sunlight.

The following two screenshots show Photographic Tonemapping with different exposure values. Note how banding is avoided by using HDR cameras.

Al igual que los otros efectos de imagen, este efecto solo está disponible en Unity Pro y usted debe tener Pro Standard Assets instalado antes de que se vuelva disponible.

Propiedades

Propiedad: Función:
Mode Choose the desired tonemapping algorithm.
Exposure Simulated exposure, defining the actual range of luminances.
Average grey Average grey value of the scene that defines the intensity of the result.
White Smallest value that will be mapped white.
Adaption speed Adjustment speed for all adaptive tonemappers.
Texture size Size of the internal texture for all adaptive tonemappers. Bigger values capture more details when calculating the new intensity and lower performance.

Soporte hardware

Este efecto debería corre en todo el hardware que Unity soporta.

Tilt Shift
Twirl