Version: 2018.4
Using precomputed lighting
Lightmapping: Getting started

LOD and Realtime GI

EnlightenThe lighting system by Geomerics used in Unity for computing global illumination (GI). More info
See in Glossary
is deprecated, and will soon be removed. Please refer to the Unity blog for more information. As an alternative use Progressive GPU Lightmapper (Preview) or Progressive CPU Lightmapper.

Read this page before you use Realtime Global Illumination (GI) on models which use the LOD (level of detail) feature.

When you use Unity’s LODA system for building multiplayer capabilities for Unity games. It is built on top of the lower level transport real-time communication layer, and handles many of the common tasks that are required for multiplayer games. More info
See in Glossary
system in a SceneA Scene contains the environments and menus of your game. Think of each unique Scene file as a unique level. In each Scene, you place your environments, obstacles, and decorations, essentially designing and building your game in pieces. More info
See in Glossary
with baked lighting and Realtime GI, the system lights the most detailed model out of the LOD GroupA component to manage level of detail (LOD) for GameObjects. More info
See in Glossary
as if it is a regular static model. It uses lightmapsA pre-rendered texture that contains the effects of light sources on static objects in the scene. Lightmaps are overlaid on top of scene geometry to create the effect of lighting. More info
See in Glossary
for direct and indirect lighting, and separate lightmaps for Realtime GI.

To allow the baking system to produce real-time or baked lightmaps, select the GameObjectThe fundamental object in Unity scenes, which can represent characters, props, scenery, cameras, waypoints, and more. A GameObject’s functionality is defined by the Components attached to it. More info
See in Glossary
you want to affect, view its Renderer component in the InspectorA Unity window that displays information about the currently selected GameObject, Asset or Project Settings, allowing you to inspect and edit the values. More info
See in Glossary
window, and check that Lightmap Static is enabled.

For lower LODs in an LOD Group, you can only combine baked lightmaps with Realtime GI from Light Probes or Light Probe Proxy VolumesA component that allows you to use more lighting information for large dynamic GameObjects that cannot use baked lightmaps (for example, large Particle Systems or skinned Meshes). More info
See in Glossary
, which you must place around the LOD Group.

Whenever you use Realtime GI, the Renderer enables the Light ProbesLight probes store information about how light passes through space in your scene. A collection of light probes arranged within a given space can improve lighting on moving objects and static LOD scenery within that space. More info
See in Glossary
option for the lower LODs, even if you enable Lightmap Static.

An animation showing how real-time ambient color affects the Realtime GI used by lower LODs
An animation showing how real-time ambient color affects the Realtime GI used by lower LODs

  • 2017–10–25 Page amended

  • Added Realtime Global Illumination in 2017.3 NewIn20173

Using precomputed lighting
Lightmapping: Getting started