environment_and_post_processing.rst 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810
  1. .. _doc_environment_and_post_processing:
  2. Environment and post-processing
  3. ===============================
  4. Godot 4 provides a redesigned Environment resource, as well as a new
  5. post-processing system with many available effects right out of the box.
  6. .. note::
  7. As of Godot 4, Environment *performance/quality* settings are defined in the
  8. project settings instead of in the Environment resource. This makes global
  9. adjustments easier, as you no longer have to tweak Environment resources
  10. individually to suit various hardware configurations.
  11. Note that most Environment performance/quality settings are only visible
  12. after enabling the **Advanced** toggle in the Project Settings.
  13. Environment
  14. -----------
  15. The :ref:`class_Environment` resource stores all the information required for
  16. controlling the 2D and 3D rendering environment. This includes the sky, ambient
  17. lighting, tone mapping, effects, and adjustments. By itself, it does nothing,
  18. but you can enable it by using it in one of the following locations, in order
  19. of priority:
  20. Camera3D node (high priority)
  21. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  22. An Environment can be set to a Camera3D node. It will have priority over any
  23. other setting.
  24. .. image:: img/environment_camera.webp
  25. This is mostly useful when you want to override an existing environment,
  26. but in general it's a better idea to use the option below.
  27. WorldEnvironment node (medium priority, recommended)
  28. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  29. The WorldEnvironment node can be added to any scene, but only one can exist per
  30. active scene tree. Adding more than one will result in a warning.
  31. .. image:: img/environment_world.webp
  32. Any Environment added has higher priority than the default Environment
  33. (explained below). This means it can be overridden on a per-scene basis,
  34. which makes it quite useful.
  35. Preview environment and sun (low priority)
  36. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  37. .. note::
  38. Since Godot 4, the preview environment and sun system replace the
  39. ``default_env.tres`` file that was used in Godot 3 projects.
  40. If no WorldEnvironment node or DirectionalLight3D node is present in the current
  41. scene, the editor will display a preview environment and sun instead. This can
  42. be disabled using the buttons at the top of the 3D editor:
  43. .. image:: img/environment_preview_sun_sky_toggle.webp
  44. Clicking on the 3 vertical dots on the right will display a dialog which allows
  45. you to customize the appearance of the preview environment:
  46. .. image:: img/environment_preview_sun_sky_dialog.webp
  47. **The preview sun and sky is only visible in the editor, not in the running
  48. project.** Using the buttons at the bottom of the dialog, you can add the
  49. preview sun and sky into the scene as nodes.
  50. .. tip::
  51. If you hold :kbd:`Shift` while clicking **Add Sun to Scene** or **Add
  52. Environment to Scene** in the preview environment editor, this will add both
  53. a preview sun and environment to the current scene (as if you clicked both
  54. buttons separately). Use this to speed up project setup and prototyping.
  55. Camera attributes
  56. -----------------
  57. .. note::
  58. In Godot 4, exposure and depth of field information was split from the
  59. Environment resource into a separate CameraAttributes resource. This allows
  60. adjusting those properties independently of other Environment settings more
  61. easily.
  62. The :ref:`class_CameraAttributes` resource stores exposure and depth of field information. It
  63. also allows enabling automatic exposure adjustments depending on scene
  64. brightness.
  65. There are two kinds of CameraAttribute resources available:
  66. - **CameraAttributesPractical:** Features are exposed using arbitrary units,
  67. which are easier to reason about for most game use cases.
  68. - **CameraAttributesPhysical:** Features are exposed using real world units,
  69. similar to a digital camera. For example, field of view is set using a focal
  70. length in millimeters instead of a value in degrees. Recommended when physical
  71. accuracy is important, such as for photorealistic rendering.
  72. Both CameraAttribute resource types allow you to use the same features, but they
  73. are configured differently. If you don't know which one to choose, use
  74. **CameraAttributesPractical**.
  75. .. note::
  76. Using a :ref:`class_CameraAttributesPhysical` on a Camera3D node will lock
  77. out FOV and aspect adjustments in that Camera3D, as field of view is
  78. adjusted in the CameraAttributesPhysical resource instead. If used in a
  79. WorldEnvironment, the CameraAttributesPhysical will not override any
  80. Camera3D in the scene.
  81. A CameraAttributes resource can be added to a Camera3D or a WorldEnvironment
  82. node. When the current camera has a CameraAttributes set, it will *override* the
  83. one set in WorldEnvironment (if any).
  84. In most situations, setting the CameraAttributes resource on the Camera3D node
  85. instead of the WorldEnvironment is recommended. Unlike WorldEnvironment,
  86. assigning the CameraAttributes resource to the Camera3D node prevents depth of
  87. field from displaying in the 3D editor viewport, unless the camera is being
  88. previewed.
  89. Environment options
  90. -------------------
  91. The following is a detailed description of all environment options and how
  92. they are intended to be used.
  93. Background
  94. ^^^^^^^^^^
  95. The Background section contains settings on how to fill the background (parts of
  96. the screen where objects were not drawn). The background not only serves the
  97. purpose of displaying an image or color. By default, it also affects how objects
  98. are affected by ambient and reflected light. This is called image-based lighting
  99. (IBL).
  100. As a result, the background sky may greatly impact your scene's overall
  101. appearance, even if the sky is never directly visible on screen. This should be
  102. taken into account when tweaking lighting in your scene.
  103. .. image:: img/environment_background1.webp
  104. There are several background modes available:
  105. - **Clear Color** uses the default clear color defined in the project settings.
  106. The background will be a constant color.
  107. - **Custom Color** is like Clear Color, but with a custom color value.
  108. - **Sky** lets you define a background sky material (see below). By default,
  109. objects in the scene will reflect this sky material and absorb ambient light
  110. from it.
  111. - **Canvas** displays the 2D scene as a background to the 3D scene.
  112. - **Keep** does not draw any sky, keeping what was present on previous frames
  113. instead. This improves performance in purely indoor scenes, but creates a
  114. "hall of mirrors" visual glitch if the sky is visible at any time.
  115. Sky materials
  116. ^^^^^^^^^^^^^
  117. When using the **Sky** background mode (or the ambient/reflected light mode is
  118. set to **Sky**), a Sky subresource becomes available to edit in the Environment
  119. resource. Editing this subresource allows you to create a SkyMaterial resource
  120. within the Sky.
  121. There are 3 built-in sky materials to choose from:
  122. - **PanoramaSkyMaterial:** Use a 360 degree panorama sky image (2:1 aspect ratio
  123. recommended). To benefit from high dynamic range, the panorama image must be
  124. in an HDR-compatible format such as ``.hdr`` or ``.exr`` rather than a
  125. standard dynamic range format like ``.png`` or ``.jpg``.
  126. - **ProceduralSkyMaterial:** Use a procedurally generated sky with adjustable
  127. ground, sun, sky and horizon colors. This is the type of sky used in the
  128. editor preview. The sun's position is automatically derived from the first 4
  129. DirectionalLight3D nodes present in the scene. There can be up to 4 suns at a
  130. given time.
  131. - **PhysicalSkyMaterial:** Use a physically-based procedural sky with adjustable
  132. scattering parameters. The sun's position is automatically derived from the
  133. first DirectionalLight3D node present in the scene. PhysicalSkyMaterial is
  134. slightly more expensive to render compared to ProceduralSkyMaterial. There can
  135. be up to 1 sun at a given time.
  136. Panorama sky images are sometimes called HDRIs (High Dynamic Range Images).
  137. You can find freely licensed HDRIs on `Poly Haven <https://polyhaven.com/hdris>`__.
  138. .. note::
  139. HDR PanoramaSkyMaterial textures with very bright spots (such as real life
  140. photos with the sun visible) may result in visible sparkles on ambient and
  141. specular reflections. This is caused by the texture's peak exposure being
  142. too high.
  143. To resolve this, select the panorama texture in the FileSystem dock, go to
  144. the Import dock, enable **HDR Clamp Exposure** then click **Reimport**.
  145. If you need a custom sky material (e.g. for procedural clouds), you can
  146. create a custom :ref:`sky shader <doc_sky_shader>`.
  147. Ambient light
  148. ^^^^^^^^^^^^^
  149. Ambient light (as defined here) is a type of light that affects every piece of
  150. geometry with the same intensity. It is global and independent of lights that
  151. might be added to the scene. Ambient light is one of the two components of
  152. image-based lighting. Unlike reflected light, ambient light does not vary
  153. depending on the camera's position and viewing angle.
  154. There are several types of ambient light to choose from:
  155. - **Background:** Source ambient light from the background, such as the sky,
  156. custom color or clear color (default). Ambient light intensity will vary
  157. depending on the sky image's contents, which can result in more visually
  158. appealing ambient lighting. A sky must be set as background for this mode to
  159. be visible.
  160. - **Disabled:** Do not use any ambient light. Useful for purely indoor scenes.
  161. - **Color:** Use a constant color for ambient light, ignoring the background
  162. sky. Ambient light intensity will be the same on all sides, which may result
  163. in the scene's lighting looking more flat. Useful for indoor scenes where
  164. pitch black shadows may be too dark, or to maximize performance on low-end
  165. devices.
  166. - **Sky:** Source ambient light from a specified sky, even if the background is
  167. set to a mode other than **Sky**. If the background mode is already **Sky**,
  168. this mode behaves identically to **Background**.
  169. .. image:: img/environment_ambient.webp
  170. When the ambient light mode is set to Sky or Background (and background is set
  171. to Sky), it's possible to blend between the ambient color and sky using the
  172. **Sky Contribution** property. This value is set to ``1.0`` by default, which
  173. means that only the ambient sky is used. The ambient color is ignored unless
  174. **Sky Contribution** is decreased below ``1.0``.
  175. Here is a comparison of how different ambient light affects a scene:
  176. .. image:: img/environment_ambient2.webp
  177. Finally, there is an **Energy** setting which is a multiplier. It's useful when
  178. working with HDR.
  179. In general, you should only rely on ambient light alone for simple scenes or
  180. large exteriors. You may also do so to boost performance. Ambient light is fast
  181. to render, but it doesn't provide the best lighting quality. It's better to
  182. generate ambient light from :ref:`ReflectionProbe <doc_reflection_probes>`,
  183. :ref:`VoxelGI <doc_using_voxel_gi>` or :ref:`SDFGI <doc_using_sdfgi>`, as these
  184. will simulate how indirect light propagates more accurately. Below is a comparison,
  185. in terms of quality, between using a flat ambient color and a VoxelGI:
  186. .. image:: img/environment_ambient_comparison.webp
  187. Using one of the methods described above will replace constant ambient
  188. lighting with ambient lighting from the probes.
  189. Reflected light
  190. ^^^^^^^^^^^^^^^
  191. Reflected light (also called specular light) is the other of the two components
  192. of image-based lighting.
  193. Reflected light can be set to one of 3 modes:
  194. - **Background:** Reflect from the background, such as the sky, custom color or
  195. clear color (default).
  196. - **Disabled:** Do not reflect any light from the environment. Useful for purely
  197. indoor scenes, or to maximize performance on low-end devices.
  198. - **Sky:** Reflect from the background sky, even if the background is set to a
  199. mode other than **Sky**. If the background mode is already **Sky**, this mode
  200. behaves identically to **Background**.
  201. Fog
  202. ^^^
  203. .. note::
  204. This section refers to non-volumetric fog only.
  205. It is possible to use both non-volumetric fog and :ref:`doc_volumetric_fog`
  206. at the same time.
  207. Fog, as in real life, makes distant objects fade away into a uniform color.
  208. There are two kinds of fog in Godot:
  209. - **Depth Fog:** This one is applied based on the distance from the camera.
  210. - **Height Fog:** This one is applied to any objects below (or above) a certain
  211. height, regardless of the distance from the camera.
  212. .. image:: img/environment_fog_depth_height.webp
  213. Both of these fog types can have their curve tweaked, making their transition more or less sharp.
  214. Two properties can be tweaked to make the fog effect more interesting:
  215. The first is **Sun Amount**, which makes use of the Sun Color property of the fog.
  216. When looking towards a directional light (usually a sun), the color of the fog
  217. will be changed, simulating the sunlight passing through the fog.
  218. The second is **Transmit Enabled** which simulates more realistic light transmittance.
  219. In practice, it makes light stand out more across the fog.
  220. .. image:: img/environment_fog_transmission.webp
  221. Volumetric Fog
  222. ^^^^^^^^^^^^^^
  223. Volumetric fog provides a realistic fog effect to the scene, with fog color
  224. being affected by the lights that traverse the fog.
  225. .. seealso::
  226. See :ref:`doc_volumetric_fog` for documentation on setting up volumetric fog.
  227. Tonemap
  228. ^^^^^^^
  229. Tonemap selects the tonemapping curve that will be applied to the scene, from a
  230. list of standard curves used in the film and game industries. Tonemapping operators
  231. other than Linear are used to make light and dark areas more homogeneous,
  232. while also avoiding clipping of bright highlights.
  233. The tone mapping options are:
  234. - **Mode:** The tone mapping mode to use.
  235. - **Linear:** The default tonemapping mode. This is the fastest and simplest
  236. tonemapping operator, but it causes bright lighting to look blown out, with
  237. noticeable clipping in the output colors.
  238. - **Reinhardt:** Performs a variation on rendered pixels' colors by this
  239. formula: ``color = color / (1 + color)``. This avoids clipping bright
  240. highlights, but the resulting image can look a bit dull.
  241. - **Filmic:** This avoids clipping bright highlights, with a resulting image
  242. that usually looks more vivid than Reinhardt.
  243. - **ACES:** Academy Color Encoding System tonemapper.
  244. ACES is slightly more expensive than other options, but it handles
  245. bright lighting in a more realistic fashion by desaturating it as it becomes brighter.
  246. ACES typically has a more contrasted output compared to Reinhardt and Filmic.
  247. ACES is the recommended option when aiming for photorealistic visuals.
  248. This tonemapping mode was called "ACES Fitted" in Godot 3.x.
  249. - **Exposure:** Tone mapping exposure which simulates amount of light received
  250. over time (default: ``1.0``). Higher values result in an overall brighter appearance.
  251. If the scene appears too dark as a result of a tonemapping operator or whitepoint
  252. change, try increasing this value slightly.
  253. - **White:** Tone mapping whitepoint, which simulates where in the scale white is
  254. located (default: ``1.0``). For photorealistic lighting, recommended values are
  255. between ``6.0`` and ``8.0``. Higher values result in less blown out highlights,
  256. but make the scene appear slightly darker as a whole.
  257. Mid- and post-processing effects
  258. --------------------------------
  259. The Environment resource supports many popular mid- and post-processing effects.
  260. .. note::
  261. Screen-space effects such as :abbr:`SSR (Screen-Space Reflections)`,
  262. :abbr:`SSAO (Screen-Space Ambient Occlusion)`,
  263. :abbr:`SSIL (Screen-Space Indirect Lighting)` and glow do not operate on
  264. geometry that is located outside the camera view or is occluded by other
  265. opaque geometry. Consider this when tweaking their settings to avoid
  266. distracting changes during gameplay.
  267. Screen-Space Reflections (SSR)
  268. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  269. *This feature is only available when using the Forward+ backend, not
  270. Mobile or Compatibility.*
  271. While Godot supports several sources of reflection data such as
  272. :ref:`doc_reflection_probes`, they may not provide enough detail for all
  273. situations. Scenarios where screen-space reflections make the most sense are
  274. when objects are in contact with each other (object over floor, over a table,
  275. floating on water, etc).
  276. .. image:: img/environment_ssr.webp
  277. On top of providing more detail, screen-space reflections also work in real-time
  278. (while other types of reflections are usually precomputed). This can be used to
  279. make characters, cars, etc. reflect on surrounding surfaces when moving around.
  280. Screen-space reflections can be used at the same time as other reflection
  281. sources to benefit from detailed reflections when possible, while having a
  282. fallback when screen-space reflections cannot be used (for example, to reflect
  283. off-screen objects).
  284. A few user-controlled parameters are available to better tweak the technique:
  285. - **Max Steps:** Determines the length of the reflection. The bigger this
  286. number, the more costly it is to compute.
  287. - **Fade In:** Allows adjusting the fade-in curve, which is useful to make the
  288. contact area softer.
  289. - **Fade Out:** Allows adjusting the fade-out curve, so the step limit fades out
  290. softly.
  291. - **Depth Tolerance:** Can be used to allow screen-space rays to pass behind
  292. objects. The rays will treat each object as if it has this depth in
  293. determining if it can pass behind the object. Higher values will make
  294. screen-space reflections exhibit fewer "breakups", at the cost of some objects
  295. creating physically incorrect reflections.
  296. Keep in mind that screen-space-reflections only work for reflecting opaque
  297. geometry. Transparent materials won't be reflected, as they don't write to the depth buffer.
  298. This also applies to shaders that use ``hint_screen_texture`` or ``hint_depth_texture``
  299. uniforms.
  300. Screen-Space Ambient Occlusion (SSAO)
  301. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  302. *This feature is only available when using the Forward+ backend, not
  303. Mobile or Compatibility.*
  304. As mentioned in the **Ambient** section, areas where light from light nodes
  305. does not reach (either because it's outside the radius or shadowed) are lit
  306. with ambient light. Godot can simulate this using VoxelGI, ReflectionProbe,
  307. the Sky, or a constant ambient color. The problem, however, is that all the
  308. methods proposed previously act more on a larger scale (large regions) than at the
  309. smaller geometry level.
  310. Constant ambient color and Sky are the same everywhere, while GI and
  311. Reflection probes have more local detail, but not enough to simulate situations
  312. where light is not able to fill inside hollow or concave features.
  313. This can be simulated with Screen Space Ambient Occlusion. As you can see in the
  314. image below, its purpose is to make sure concave areas are darker, simulating
  315. a narrower path for the light to enter:
  316. .. image:: img/environment_ssao.webp
  317. It is a common mistake to enable this effect, turn on a light, and not be able to
  318. appreciate it. This is because :abbr:`SSAO (Screen-Space Ambient Occlusion)`
  319. only acts on *ambient* light. It does not affect direct light.
  320. This is why, in the image above, the effect is less noticeable under the direct
  321. light (on the left). If you want to force
  322. :abbr:`SSAO (Screen-Space Ambient Occlusion)` to work with direct light too,
  323. use the **Light Affect** parameter. Even though this is not physically correct,
  324. some artists like how it looks.
  325. :abbr:`SSAO (Screen-Space Ambient Occlusion)` looks best when combined with a
  326. real source of indirect light, like VoxelGI:
  327. .. image:: img/environment_ssao2.webp
  328. Tweaking :abbr:`SSAO (Screen-Space Ambient Occlusion)` is possible with several
  329. parameters:
  330. .. image:: img/environment_ssao_parameters.webp
  331. - **Radius:** The distance at which objects can occlude each other when
  332. calculating screen-space ambient occlusion. Higher values will result in
  333. occlusion over a greater distance at the cost of performance and quality.
  334. - **Intensity:** The primary screen-space ambient occlusion intensity. Acts as a
  335. multiplier for the screen-space ambient occlusion effect. A higher value
  336. results in darker occlusion.
  337. Since :abbr:`SSAO (Screen-Space Ambient Occlusion)` is a screen-space effect,
  338. it's recommended to remain conservative with this value.
  339. :abbr:`SSAO (Screen-Space Ambient Occlusion)` that is too strong can be
  340. distracting during gameplay.
  341. - **Power:** The distribution of occlusion. A higher value results in darker
  342. occlusion, similar to **Intensity**, but with a sharper falloff.
  343. - **Detail:** Sets the strength of the additional level of detail for the
  344. screen-space ambient occlusion effect. A high value makes the detail pass more
  345. prominent, but it may contribute to aliasing in your final image.
  346. - **Horizon:** The threshold for considering whether a given point on a surface
  347. is occluded or not represented as an angle from the horizon mapped into the
  348. 0.0-1.0 range. A value of 1.0 results in no occlusion.
  349. - **Sharpness:** The amount that the screen-space ambient occlusion effect is
  350. allowed to blur over the edges of objects. Setting too high will result in
  351. aliasing around the edges of objects. Setting too low will make object edges
  352. appear blurry.
  353. - **Light Affect:** The screen-space ambient occlusion intensity in direct
  354. light. In real life, ambient occlusion only applies to indirect light, which
  355. means its effects can't be seen in direct light. Values higher than 0 will
  356. make the :abbr:`SSAO (Screen-Space Ambient Occlusion)` effect visible in
  357. direct light. Values above ``0.0`` are not physically accurate, but some
  358. artists prefer this effect.
  359. Screen-Space Indirect Lighting (SSIL)
  360. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  361. *This feature is only available when using the Forward+ backend, not
  362. Mobile or Compatibility.*
  363. :abbr:`SSIL (Screen-Space Indirect Lighting)` provides indirect lighting for
  364. small details or dynamic geometry that other global illumination techniques
  365. cannot cover. This applies to bounced diffuse lighting, but also emissive
  366. materials. When :abbr:`SSIL (Screen-Space Indirect Lighting)` is enabled on its
  367. own, the effect may not be that noticeable, which is intended.
  368. Instead, :abbr:`SSIL (Screen-Space Indirect Lighting)` is meant to be used as a
  369. *complement* to other global illumination techniques such as VoxelGI, SDFGI and
  370. LightmapGI. :abbr:`SSIL (Screen-Space Indirect Lighting)` also provides
  371. a subtle ambient occlusion effect, similar to SSAO but with less detail.
  372. This feature only provides indirect lighting. It is not a full global illumination
  373. solution. This makes it different from screen-space global illumination (SSGI)
  374. offered by other 3D engines. :abbr:`SSIL (Screen-Space Indirect Lighting)`
  375. can be combined with :abbr:`SSR (Screen-Space Reflections)` and/or
  376. :abbr:`SSAO (Screen-Space Ambient Occlusion)` for greater visual quality
  377. (at the cost of performance).
  378. Tweaking :abbr:`SSIL (Screen-Space Indirect Lighting)` is possible with several parameters:
  379. - **Radius:** The distance that bounced lighting can travel when using the
  380. screen space indirect lighting effect. A larger value will result in light
  381. bouncing further in a scene, but may result in under-sampling artifacts which
  382. look like long spikes surrounding light sources.
  383. - **Intensity:** The brightness multiplier for the screen-space indirect
  384. lighting effect. A higher value will result in brighter light.
  385. - **Sharpness:** The amount that the screen-space indirect lighting effect is
  386. allowed to blur over the edges of objects. Setting too high will result in
  387. aliasing around the edges of objects. Setting too low will make object edges
  388. appear blurry.
  389. - **Normal Rejection:** Amount of normal rejection used when calculating
  390. screen-space indirect lighting. Normal rejection uses the normal of a given
  391. sample point to reject samples that are facing away from the current pixel.
  392. Normal rejection is necessary to avoid light leaking when only one side of an
  393. object is illuminated. However, normal rejection can be disabled if light
  394. leaking is desirable, such as when the scene mostly contains emissive objects
  395. that emit light from faces that cannot be seen from the camera.
  396. .. image:: img/environment_ssil.webp
  397. Signed Distance Field Global Illumination (SDFGI)
  398. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  399. *This feature is only available when using the Forward+ backend, not
  400. Mobile or Compatibility.*
  401. Signed distance field global illumination (SDFGI) is a form of real-time global
  402. illumination. It is not a screen-space effect, which means it can provide global
  403. illumination for off-screen elements (unlike :abbr:`SSIL (Screen-Space Indirect Lighting)`).
  404. .. seealso::
  405. See :ref:`doc_using_sdfgi` for instructions on setting up this global
  406. illumination technique.
  407. .. image:: img/environment_sdfgi.webp
  408. .. _doc_environment_and_post_processing_glow:
  409. Glow
  410. ^^^^
  411. In photography and film, when light amount exceeds the maximum *luminance*
  412. (brightness) supported by the media, it generally bleeds outwards to darker
  413. regions of the image. This is simulated in Godot with the **Glow** effect.
  414. .. image:: img/environment_glow1.webp
  415. By default, even if the effect is enabled, it will be weak or invisible. One of
  416. two conditions need to happen for it to actually show:
  417. - 1) The light in a pixel surpasses the **HDR Threshold** (where 0 is all light
  418. surpasses it, and 1.0 is light over the tonemapper **White** value).
  419. Normally, this value is expected to be at 1.0, but it can be lowered to
  420. allow more light to bleed. There is also an extra parameter, **HDR Scale**,
  421. that allows scaling (making brighter or darker) the light surpassing the
  422. threshold.
  423. .. image:: img/environment_glow_threshold.webp
  424. - 2) The **Bloom** property has a value greater than ``0.0``. As it increases,
  425. it sends the whole screen to the glow processor at higher amounts.
  426. .. image:: img/environment_glow_bloom.webp
  427. Both will cause the light to start bleeding out of the brighter areas.
  428. Once glow is visible, it can be controlled with a few extra parameters:
  429. - **Intensity** is an overall scale for the effect, it can be made stronger or
  430. weaker (``0.0`` removes it).
  431. - **Strength** is how strong the gaussian filter kernel is processed. Greater
  432. values make the filter saturate and expand outwards. In general, changing this
  433. is not needed, as the size can be adjusted more efficiently with the **Levels**.
  434. The **Blend Mode** of the effect can also be changed:
  435. - **Additive** is the strongest one, as it only adds the glow effect over the
  436. image with no blending involved. In general, it's too strong to be used, but
  437. can look good with low-intensity **Bloom** (produces a dream-like effect).
  438. - **Screen** ensures glow never brightens more than itself and it works great as
  439. an all around.
  440. - **Softlight** is the default and weakest one, producing only a subtle color
  441. disturbance around the objects. This mode works best on dark scenes.
  442. - **Replace** can be used to blur the whole screen or debug the effect. It only
  443. shows the glow effect without the image below.
  444. - **Mix** mixes the glow effect with the main image. This can be used for
  445. greater artistic control. The mix factor is controlled by the **Mix** property
  446. which appears above the blend mode (only when the blend mode is set to Mix).
  447. High mix factor values will appear to darken the image unless **Bloom** is
  448. increased.
  449. To change the glow effect size and shape, Godot provides **Levels**. Smaller
  450. levels are strong glows that appear around objects, while large levels are hazy
  451. glows covering the whole screen:
  452. .. image:: img/environment_glow_layers.webp
  453. The real strength of this system, though, is to combine levels to create more
  454. interesting glow patterns:
  455. .. image:: img/environment_glow_layers2.webp
  456. Finally, the glow effect can be controlled using a *glow map*, which is a
  457. texture that determines how bright glow should be on each part of the screen.
  458. This texture can optionally be colored to tint the glow effect to the glow map's
  459. color. The texture is stretched to fit the viewport, so using an aspect ratio
  460. that matches your viewport's most common aspect ratio (such as 16:9) is recommended
  461. to avoid visible distortion.
  462. There are 2 main use cases for a glow map texture:
  463. - Create a "lens dirt" effect using a dirt pattern texture.
  464. - Make glow less strong on specific parts of the screen by using a gradient texture.
  465. .. image:: img/environment_glow_map.webp
  466. .. note::
  467. Glow can be used in 2D as well. To do so, set the environment background
  468. mode to **Canvas** then enable glow as usual. You may have to decrease
  469. **Glow HDR Threshold** to see a difference.
  470. Adjustments
  471. ^^^^^^^^^^^
  472. At the end of processing, Godot offers the possibility to do some standard
  473. image adjustments.
  474. .. image:: img/environment_adjustments.webp
  475. **Basic BCS adjustments**
  476. The first adjustment is being able to change the typical **Brightness**, **Contrast**,
  477. and **Saturation** properties:
  478. .. image:: img/environment_adjustments_bcs.webp
  479. **Color correction using a 1D gradient**
  480. The second adjustment is by supplying a color correction gradient. This can be
  481. done by assigning a GradientTexture1D resource to the **Color Correction**
  482. property, or by loading a texture containing a horizontal gradient. The leftmost
  483. part of the gradient represents black in the source image, whereas the rightmost
  484. part of the gradient represents white in the source image.
  485. A linear black-to-white gradient like the following one will produce no effect:
  486. .. image:: img/environment_adjustments_default_gradient.webp
  487. But creating custom ones will allow to map each channel to a different color:
  488. .. image:: img/environment_adjustments_custom_gradient.webp
  489. **Color correction using a 3D LUT**
  490. A 3D look-up-texture (LUT) can also be used for color correction. This is a
  491. special texture used to modify each color channel separately from one another
  492. (red, green, blue). This image can be of any resolution, but since color
  493. correction is low-frequency data, sticking to low resolutions is recommended for
  494. performance reasons. A LUT texture's resolution is typically 17×17×17, 33×33×33,
  495. 51×51×51 or 65×65×65 (the odd size allows for better interpolation).
  496. For this to work, the look-up texture's import mode must be set to Texture3D
  497. in the Import dock (instead of being imported as a regular Texture2D):
  498. .. image:: img/environment_adjustments_3d_lut_import.webp
  499. Make sure to configure the number of horizontal and vertical slices to import as
  500. well. If you don't do this, the LUT texture will not affect the viewport
  501. correctly when used. You can preview how the 3D texture was imported by
  502. double-clicking it, in the FileSystem dock, then going to the inspector to flip
  503. through the texture's layers.
  504. You can use this neutral 33×33×33 LUT template as a base (right-click and choose
  505. **Save as…**):
  506. .. image:: img/environment_adjustments_3d_lut_template.webp
  507. With the above LUT template, after changing its import mode to **Texture3D**,
  508. set its number of **Horizontal** slices to ``33`` in the Import dock then click
  509. **Reimport**. If you load this LUT into the **Color Correction** property, you
  510. won't see any visible difference for now since this texture is designed to be a
  511. neutral starting point.
  512. This LUT template can be modified in an image editor to provide a different
  513. mood to the image. A common workflow is to place the LUT image next to a
  514. screenshot of the project's 3D viewport, then use an image editor to modify both
  515. the LUT image and the screenshot at the same time. The LUT can then be saved and
  516. applied to the game engine to perform the same color correction in real-time.
  517. For example, modifying the LUT template in an image editor to give it a
  518. "sepia" look results in the image on the right:
  519. .. image:: img/environment_adjustments_3d_lut_comparison.webp
  520. .. note::
  521. Adjustments and color correction are applied *after* tonemapping.
  522. This means the tonemapping properties defined above still have an effect
  523. when adjustments are enabled.
  524. Camera attribute options
  525. ------------------------
  526. Depth of Field / Far Blur
  527. ^^^^^^^^^^^^^^^^^^^^^^^^^
  528. This effect simulates focal distance on cameras. It blurs objects behind
  529. a given range. It has an initial **Distance** with a **Transition** region
  530. (in world units):
  531. .. image:: img/environment_dof_far.webp
  532. The **Amount** parameter controls the amount of blur. For larger blurs, tweaking
  533. the **Quality** may be needed in order to avoid artifacts.
  534. Depth of Field / Near Blur
  535. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  536. This effect simulates focal distance on cameras. It blurs objects close
  537. to the camera (acts in the opposite direction as far blur).
  538. It has an initial **Distance** with a **Transition** region (in world units):
  539. .. image:: img/environment_dof_near.webp
  540. The **Amount** parameter controls the amount of blur. For larger blurs, tweaking
  541. the **Quality** may be needed in order to avoid artifacts.
  542. It is common to use both blurs together to focus the viewer's attention on a
  543. given object, or create a so-called
  544. `"tilt shift" effect <https://en.wikipedia.org/wiki/Miniature_faking>`__.
  545. .. image:: img/environment_mixed_blur.webp
  546. .. note::
  547. When using CameraAttributesPhysical instead of CameraAttributesPractical,
  548. depth of field is automatically computed from the camera attributes' focus
  549. distance, focal length, and aperture.
  550. Exposure
  551. ^^^^^^^^
  552. This multiplies the overall scene brightness visible from the camera. Higher
  553. values result in a visually brighter scene.
  554. Auto Exposure
  555. ^^^^^^^^^^^^^
  556. *This feature is only available when using the Forward+ backend, not
  557. Mobile or Compatibility.*
  558. Even though, in most cases, lighting and texturing are heavily artist controlled,
  559. Godot supports a basic high dynamic range implementation with the auto exposure
  560. mechanism. This is generally used to add realism when combining interior areas
  561. with low light and bright outdoor areas. Auto exposure simulates the camera
  562. (or eye) in an effort to adapt between light and dark locations and their
  563. different amounts of light.
  564. .. note::
  565. Auto exposure needs to evaluate the scene's brightness every frame, which
  566. has a moderate performance cost. Therefore, it's recommended to leave Auto
  567. Exposure disabled if it doesn't make much of a difference in your scene.
  568. .. image:: img/environment_hdr_autoexp.webp
  569. The simplest way to use auto exposure is to make sure outdoor lights (or other
  570. strong lights) have energy beyond 1.0. This is done by tweaking their **Energy**
  571. multiplier (on the Light itself). To make it consistent, the **Sky** usually
  572. needs to use the energy multiplier too, to match with the directional light.
  573. Normally, values between 3.0 and 6.0 are enough to simulate indoor-outdoor conditions.
  574. By combining Auto Exposure with :ref:`doc_environment_and_post_processing_glow`
  575. post-processing, pixels that go over the tonemap **White** will bleed to the
  576. glow buffer, creating the typical bloom effect in photography.
  577. .. image:: img/environment_hdr_bloom.webp
  578. The user-controllable values in the Auto Exposure section come with sensible
  579. defaults, but you can still tweak them:
  580. .. image:: img/environment_hdr.webp
  581. - **Scale:** Value to scale the lighting. Higher values produce brighter
  582. images, and lower values produce darker ones.
  583. - **Min Sensitivity / Min Exposure Value:** Minimum luminance that auto exposure
  584. will aim to adjust for (in ISO when using CameraAttributesPractical, or in
  585. EV100 when using CameraAttributesPhysical). Luminance is the average of the
  586. light in all the pixels of the screen.
  587. - **Max Sensitivity / Max Exposure Value:** Maximum luminance that auto exposure
  588. will aim to adjust for (in ISO when using CameraAttributesPractical, or in
  589. EV100 when using CameraAttributesPhysical).
  590. - **Speed:** Speed at which luminance corrects itself. The higher the value, the
  591. faster luminance correction happens. High values may be more suited to
  592. fast-paced games, but can be distracting in some scenarios.
  593. When using CameraAttributesPractical, exposure is set using *sensitivity*
  594. defined in ISO instead of an exposure value in EV100. Typical ISO values are
  595. between 50 and 3200, with higher values resulting in higher final exposure. In
  596. real life, daytime photography generally uses ISO values between 100 and 800.
  597. .. seealso::
  598. See :ref:`doc_physical_light_and_camera_units` if you wish to use real world
  599. units to configure your camera's exposure, field of view and depth of field.