exposure
Red, green, and blue factors that scale each color channel in the camera’s image.
Declaration
var exposure: vector_float3 { get set }Discussion
Simulating a real-world camera requires considering the way a pixel value captured by an imaging sensor is processed for display (or how a unit of film stock is developed and projected). Part of such consideration is the exposure level for each channel, applied to each color channel using the following formula:
baseValue = (sensorValue + flash) * exposure
In this formula, sensorValue is the color level recorded by a sensor. In rendering, this value corresponds to the color component output of the rest of the rendering process before physical camera simulation effects are added. The baseValue produced by this formula should then be used with the exposureCompression property to produce a final output color level.