Environment and Post-Processing

Godot 3 provides a redesigned Environment resource, as well as a brand new post-processing system with many available effects right out of the box.

Environment

The Environment resource stores all the information required for controlling rendering environment. This includes sky, ambient lighting, tone mapping, effects, and adjustments. By itself it does nothing, but it becomes enabled once used in one of the following locations in order of priority:

Camera Node

An Environment can be set to a camera. It will have priority over any other setting.

../../_images/environment_camera.png

This is mostly useful when wanting to override an existing environment, but in general it’s a better idea to use the option below.

WorldEnvironment Node

The WorldEnvironment node can be added to any scene, but only one can exist per active scene tree. Adding more than one will result in a warning.

../../_images/environment_world.png

Any Environment added has higher priority than the default Environment (explained below). This means it can be overridden on a per-scene basis, which makes it quite useful.

Default Environment

A default environment can be set, which acts as a fallback when no Environment was set to a Camera or WorldEnvironment. Just head to Project Settings -> Rendering -> Environment:

../../_images/environment_default.png

New projects created from the Project Manager come with a default environment (default_env.tres). If one needs to be created, save it to disk before referencing it here.

Environment Options

Following is a detailed description of all environment options and how they are intended to be used.

Background

The Background section contains settings on how to fill the background (parts of the screen where objects where not drawn). In Godot 3.0, the background not only serves the purpose of displaying an image or color, it can also change how objects are affected by ambient and reflected light.

../../_images/environment_background1.png

There are many ways to set the background:

  • Clear Color uses the default clear color defined by the project. The background will be a constant color.
  • Custom Color is like Clear Color but with a custom color value.
  • Sky lets you define a panorama sky (a 360 degree sphere texture) or a procedural sky (a simple sky featuring a gradient and an optional sun). Objects will reflect it and absorb ambient light from it.
  • Color+Sky lets you define a sky (as above) but uses a constant color value for drawing the background. The sky will only be used for reflection and ambient light.

Ambient Light

Ambient (as defined here) is a type of light that affects every piece of geometry with the same intensity. It is global and independent of lights that might be added to the scene.

There are two types of ambient light: the Ambient Color (which is a constant color multiplied by the material albedo) and then one obtained from the Sky (as described before, but a sky needs to be set as background for this to be enabled).

../../_images/environment_ambient.png

When a Sky is set as background, it’s possible to blend between ambient color and sky using the Sky Contribution setting (this value is 1.0 by default for convenience so only sky affects objects).

Here is a comparison of how different ambient light affects a scene:

../../_images/environment_ambient2.png

Finally there is a Energy setting, which is a multiplier, useful when working with HDR.

In general, ambient light should only be used for simple scenes, large exteriors, or for performance reasons (ambient light is cheap), as it does not provide the best lighting quality. It’s better to generate ambient light from ReflectionProbe or GIProbe, which will more faithfully simulate how indirect light propagates. Below is a comparison in quality between using a flat ambient color and a GIProbe:

../../_images/environment_ambient_comparison.png

Using one of the methods described above, objects get constant ambient lighting replaced by ambient light from the probes.

Fog

Fog, as in real life, makes distant objects fade away into an uniform color. The physical effect is actually pretty complex, but Godot provides a good approximation. There are two kinds of fog in Godot:

  • Depth Fog: This one is applied based on the distance from the camera.
  • Height Fog: This one is applied to any objects below (or above) a certain height, regardless of the distance from the camera.
../../_images/environment_fog_depth_height.png

Both of these fog types can have their curve tweaked, making their transition more or less sharp.

Two properties can be tweaked to make the fog effect more interesting:

The first is Sun Amount, which makes use of the Sun Color property of the fog. When looking towards a directional light (usually a sun), the color of the fog will be changed, simulating the sunlight passing through the fog.

The second is Transmit Enabled which simulates more realistic light transmittance. In practice, it makes light stand out more across the fog.

../../_images/environment_fog_transmission.png

Tonemap

Selects the tone-mapping curve that will be applied to the scene, from a short list of standard curves used in the film and game industry. Tone mapping can make light and dark areas more homogeneous, even though the result is not that strong. Tone mapping options are:

  • Mode: Tone mapping mode, which can be Linear, Reindhart, Filmic, or Aces.
  • Exposure: Tone mapping exposure which simulates amount of light received over time.
  • White: Tone mapping white which simulates where in the scale is white located (by default 1.0).

Auto Exposure (HDR)

Even though, in most cases, lighting and texturing are heavily artist controlled, Godot suports a simple high dynamic range implementation with the auto exposure mechanism. This is generally used for the sake of realism when combining interior areas with low light and outdoors. Auto exposure simulates the camera (or eye) in an effort to adapt between light and dark locations and their different amounts of light.

../../_images/environment_hdr_autoexp.gif

The simplest way to use auto exposure is to make sure outdoor lights (or other strong lights) have energy beyond 1.0. This is done by tweaking their Energy multiplier (on the Light itself). To make it consistent, the Sky usually needs to use the energy multiplier too, to match the with the directional light. Normally, values between 3.0 and 6.0 are enough to simulate indoor-oudoor conditions.

By combining Auto Exposure with Glow post processing (more on that below), pixels that go over the tonemap White will bleed to the glow buffer, creating the typical bloom effect in photography.

../../_images/environment_hdr_bloom.png

The user-controllable values in the Auto Exposure section come with sensible defaults, but you can still tweak then:

../../_images/environment_hdr.png
  • Scale: Value to scale the lighting. Brighter values produce brighter images, smaller ones produce darker ones.
  • Min Luma: Minimum luminance that auto exposure will aim to adjust for. Luminance is the average of the light in all the pixels of the screen.
  • Max Luma: Maximum luminance that auto exposure will aim to adjust for.
  • Speed: Speed at which luminance corrects itself. The higher the value, the faster correction happens.

Mid and Post-Processing Effects

A large amount of widely-used mid and post-processing effects are supported in Environment.

Screen-Space Reflections (SSR)

While Godot supports three sources of reflection data (Sky, ReflectionProbe, and GIProbe), they may not provide enough detail for all situations. Scenarios where Screen Space Reflections make the most sense are when objects are in contact with each other (object over floor, over a table, floating on water, etc).

../../_images/environment_ssr.png

The other advantage (even if only enabled to a minimum), is that it works in real-time (while the other types of reflections are pre-computed). This is great to make characters, cars, etc. reflect when moving around.

A few user-controlled parameters are available to better tweak the technique:

  • Max Steps determines the length of the reflection. The bigger this number, the more costly it is to compute.
  • Fade In allows adjusting the fade-in curve, which is useful to make the contact area softer.
  • Fade Out allows adjusting the fade-out curve, so the step limit fades out softly.
  • Depth Tolerance can be used for scren-space-ray hit tolerance to gaps. The bigger the value, the more gaps will be ignored.
  • Roughness will apply a screen-space blur to approximate roughness in objects with this material characteristic.

Keep in mind that screen-space-reflections only work for reflecting opaque geometry. Transparent objects can’t be reflected.

Screen-Space Ambient Occlusion (SSAO)

As mentioned in the Ambient section, areas where light from light nodes does not reach (either because it’s outside the radius or shadowed) are lit with ambient light. Godot can simulate this using GIProbe, ReflectionProbe, the Sky, or a constant ambient color. The problem, however, is that all the methods proposed before act more on a larger scale (large regions) than at the smaller geometry level.

Constant ambient color and Sky are uniform and the same everywhere while GI and Reflection probes have more local detail but not enough to simulate situations where light is not able to fill inside hollow or concave features.

This can be simulated with Screen Space Ambient Occlusion. As you can see in the image below, the goal of it is to make sure concave areas are darker, simulating a narrower path for the light to enter:

../../_images/environment_ssao.png

It is a common mistake to enable this effect, turn on a light, and not be able to appreciate it. This is because SSAO only acts on ambient light, not direct light.

This is why, in the image above, the effect is less noticeable under the direct light (at the left). If you want to force SSAO to work with direct light too, use the Light Affect parameter (even though this is not correct, some artists like how it looks).

SSAO looks best when combined with a real source of indirect light, like GIProbe:

../../_images/environment_ssao2.png

Tweaking SSAO is possible with several parameters:

../../_images/environment_ssao_parameters.png
  • Radius/Intensity: To control the radius or intensity of the occlusion, these two parameters are available. Radius is in world (Metric) units.
  • Radius2/Intensity2: A Secondary radius/intensity can be used. Combining a large and a small radius AO generally works well.
  • Bias: This can be tweaked to solve self occlusion, though the default generally works well enough.
  • Light Affect: SSAO only affects ambient light but increasing this slider can make it also affect direct light. Some artists prefer this effect.
  • Quality: Depending on quality, SSAO will do more samplings over a sphere for every pixel. High quality only works well on modern GPUs.
  • Blur: Type of blur kernel used. The 1x1 kernel is a simple blur that preserves local detail better but is not as efficient (generally works better with high quality setting above), while 3x3 will soften the image better (with a bit of dithering-like effect) but does not preserve local detail as well.
  • Edge Sharpness: This can be used to preserve the sharpness of edges (avoids areas without AO on creases).

Depth of Field / Far Blur

This effect simulates focal distance on high end cameras. It blurs objects behind a given range. It has an initial Distance with a Transition region (in world units):

../../_images/environment_dof_far.png

The Amount parameter controls the amount of blur. For larger blurs, tweaking the Quality may be needed in order to avoid artifacts.

Depth of Field / Near Blur

This effect simulates focal distance on high end cameras. It blurs objects close to the camera (acts in the opposite direction as far blur). It has an initial Distance with a Transition region (in world units):

../../_images/environment_dof_near.png

The Amount parameter controls the amount of blur. For larger blurs, tweaking the Quality may be needed in order to avoid artifacts.

It is common to use both blurs together to focus the viewer’s attention on a given object:

../../_images/environment_mixed_blur.png

Glow

In photography and film, when light amount exceeds the maximum supported by the media (be it analog or digital), it generally bleeds outwards to darker regions of the image. This is simulated in Godot with the Glow effect.

../../_images/environment_glow1.png

By default, even if the effect is enabled, it will be weak or invisible. One of two conditions need to happen for it to actually show:

    1. The light in a pixel surpasses the HDR Threshold (where 0 is all light surpasses it, and 1.0 is light over the tonemapper White value). Normally this value is expected to be at 1.0, but it can be lowered to allow more light to bleed. There is also an extra parameter, HDR Scale that allows scaling (making brighter or darker) the light surpassing the threshold.
../../_images/environment_glow_threshold.png
    1. The Bloom effect has a value set greater than 0. As it increases, it sends the whole screen to the glow processor at higher amounts.
../../_images/environment_glow_bloom.png

Both will cause the light to start bleeding out of the brighter areas.

Once glow is visible, it can be controlled with a few extra parameters:

  • Intensity is an overall scale for the effect, it can be made stronger or weaker (0.0 removes it).
  • Strength is how strong the gaussian filter kernel is processed. Greater values make the filter saturate and expand outwards. In general changing this is not needed, as the size can be more efficiently adjusted with the Levels.

The Blend Mode of the effect can also be changed:

  • Additive is the strongest one, as it just adds the glow effect over the image with no blending involved. In general, it’s too strong to be used but can look good with low intensity Bloom (produces a dream-like effect).
  • Screen is the default one. It ensures glow never brights more than itself and works great as an all around.
  • Softlight is the weakest one, producing only a subtle color disturbance around the objects. This mode works best on dark scenes.
  • Replace can be used to blur the whole screen or debug the effect. It just shows the glow effect without the image below.

To change the glow effect size and shape, Godot provides Levels. Smaller levels are strong glows that appear around objects while large levels are hazy glows covering the whole screen:

../../_images/environment_glow_layers.png

The real strength of this system, though, is to combine levels to create more interesting glow patterns:

../../_images/environment_glow_layers2.png

Finally, as the highest layers are created by stretching small blurred images, it is possible that some blockiness may be visible. Enabling Bicubic Upscaling gets rids of it, at a minimal performance cost.

../../_images/environment_glow_bicubic.png

Adjustments

At the end of processing, Godot offers the possibility to do some standard image adjustments.

../../_images/environment_adjustments.png

The first one is being able to change the typical Brightness, Contrast, and Saturation:

../../_images/environment_adjustments_bcs.png

The second is by supplying a color correction gradient. A regular black to white gradient like the following one will produce no effect:

../../_images/environment_adjusments_default_gradient.png

But creating custom ones will allow to map each channel to a different color:

../../_images/environment_adjusments_custom_gradient.png