LOD for baked lightmaps
https://docs.unity3d.com/560/Documentation/Manual/LODForBakedGI.html
https://docs.unity3d.com/Manual/LODForBakedGI.html
LOD for baked lightmaps
There are a number of details you must be aware of when baking light on models which use theLOD (level of detail) feature.
Baked indirect light on LOD models only works correctly when Realtime Global Illumination is switched off. IfRealtime Global Illumination is switched on, the lower LOD models from the LOD group will not be lit correctly.
![LOD Group 不同 Lod 使用不同 LightMap LOD Group 不同 Lod 使用不同 LightMap](https://image.shishitao.com:8440/aHR0cHM6Ly9waWFuc2hlbi5jb20vaW1hZ2VzLzk4OS85MjEwMzM5ODM1MzU0ZGRkN2E2NTFlNDNmM2ZhMTEyZC5wbmc%3D.png?w=700&webp=1)
When you are using Unity’s LOD system in a scene with baked lighting, the highest level-of-detail model out of the LOD group is lit as if it was a regular static model, using lightmaps for the direct and indirect lighting.
For all the lower level-of-detail models in the group, only the direct lighting is baked, and the LOD system relies onlight probes to sample indirect lighting.
This means if you want your lower level-of-detail models to look correct with baked light, youmust position light probes around them to capture the indirect lighting during the bake.
If you do not use light probes, your lower LOD models will have direct light only, and will look incorrect:
![LOD Group 不同 Lod 使用不同 LightMap LOD Group 不同 Lod 使用不同 LightMap](https://image.shishitao.com:8440/aHR0cHM6Ly9waWFuc2hlbi5jb20vaW1hZ2VzLzk2OC9hY2Q2MzczNjliZDc4MjQxMjA1NDgyMjZiMWE1NGJlOC5wbmc%3D.png?w=700&webp=1)
To set up LOD models correctly for baked lighting, mark the LOD objects as Static for lightmapping:
![LOD Group 不同 Lod 使用不同 LightMap LOD Group 不同 Lod 使用不同 LightMap](https://image.shishitao.com:8440/aHR0cHM6Ly9waWFuc2hlbi5jb20vaW1hZ2VzLzQwNC85Nzk4OGZlMWVhNjE3OTFiODU0NDU4MzY1OTNhNDc0NC5wbmc%3D.png?w=700&webp=1)
Place light probes around the LOD objects using the light probes component.
![LOD Group 不同 Lod 使用不同 LightMap LOD Group 不同 Lod 使用不同 LightMap](https://image.shishitao.com:8440/aHR0cHM6Ly9waWFuc2hlbi5jb20vaW1hZ2VzLzEwNi9jYTZkMTJmY2QyNDA3ZTRkMTEzZjg4MDkxYWM2NzUyYS5wbmc%3D.png?w=700&webp=1)
After baking the light, your lower level-of-detail models show correctly show the indirect and bounced light, matching the highest level-of-detail model:
![LOD Group 不同 Lod 使用不同 LightMap LOD Group 不同 Lod 使用不同 LightMap](https://image.shishitao.com:8440/aHR0cHM6Ly9waWFuc2hlbi5jb20vaW1hZ2VzLzk2LzYyODQ5Njk0ZDkxMGU3N2ZjMjE3MTEzMThkMWU0ZTAwLnBuZw%3D%3D.png?w=700&webp=1)
You should also be aware that only the highest level-of-detail model will affect the lighting on the surrounding geometry (for example, shadows or bounced light on surrounding buildings). In most cases this should not be a problem since your lower level-of-detail models should closely resemble the highest level-of-detail model.