Enum Environment.ToneMapper
- Namespace
 - Godot
 
- Assembly
 - GodotSharp.dll
 
public enum Environment.ToneMapper : long
  Fields
Aces = 3Use the Academy Color Encoding System tonemapper. ACES is slightly more expensive than other options, but it handles bright lighting in a more realistic fashion by desaturating it as it becomes brighter. ACES typically has a more contrasted output compared to Reinhardt and Filmic.
Note: This tonemapping operator is called "ACES Fitted" in Godot 3.x.
Filmic = 2Filmic tonemapper operator. This avoids clipping bright highlights, with a resulting image that usually looks more vivid than Reinhardt.
Linear = 0Linear tonemapper operator. Reads the linear data and passes it on unmodified. This can cause bright lighting to look blown out, with noticeable clipping in the output colors.
Reinhardt = 1Reinhardt tonemapper operator. Performs a variation on rendered pixels' colors by this formula:
color = color / (1 + color). This avoids clipping bright highlights, but the resulting image can look a bit dull.