Difference between revisions of "Light map"

From polycount
Jump to: navigation, search
(images restored)
(More Information: removed Category:TextureCoordinates because doesn't exist, contains nothing)
 
(3 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
Because the light map lighting is baked ahead of time the artist can use a non-real-time lighting techniques like radiosity, which can take many minutes to render. This allows the surfaces to receive bounce lighting, soft shadowing, color bleeding, etc., for a very realistic-looking result.  
 
Because the light map lighting is baked ahead of time the artist can use a non-real-time lighting techniques like radiosity, which can take many minutes to render. This allows the surfaces to receive bounce lighting, soft shadowing, color bleeding, etc., for a very realistic-looking result.  
  
[[image:lightmap_samavan-ishuriken.jpg|thumb|600px|left|Multiply light mapping for the iPhone, [http://samavan.deviantart.com/art/iPhone-Shuriken-Game-2-145376053 original size]. Image by [http://samavan.com/|Thomas "sama.van" Varoux].]]<br clear="all"/>
+
[[image:lightmap_samavan-ishuriken.jpg|thumb|600px|left|Multiply light mapping for the iPhone, [http://samavan.deviantart.com/art/iPhone-Shuriken-Game-2-145376053 original size]. Image by [http://samavan.com/ Thomas "sama.van" Varoux].]]<br clear="all"/>
  
 
Traditionally, light maps store the color and brightness of pre-baked lighting. The [[Diffuse map]] is applied to the mesh with no lighting (like an [[Emissive map]]), and the light map is then multiplied against it, darkening the diffuse where the light map has shadows.
 
Traditionally, light maps store the color and brightness of pre-baked lighting. The [[Diffuse map]] is applied to the mesh with no lighting (like an [[Emissive map]]), and the light map is then multiplied against it, darkening the diffuse where the light map has shadows.
Line 12: Line 12:
 
However, an over-multiply technique can be used instead to get an "over-exposed" look, where the light map is multiplied two or more times. If it is multiplied 2x this means middle-gray will cause the diffuse map to render at its regular intensity, while brighter light map values will cause over-brightening, and darker values will still darken the color map. If multiplied 4x then 1/4 gray becomes the middle value.
 
However, an over-multiply technique can be used instead to get an "over-exposed" look, where the light map is multiplied two or more times. If it is multiplied 2x this means middle-gray will cause the diffuse map to render at its regular intensity, while brighter light map values will cause over-brightening, and darker values will still darken the color map. If multiplied 4x then 1/4 gray becomes the middle value.
  
[[image:20110422_multiply4x.jpg|thumb|600px|left|Multiplying vertex color onto a texture, using a 4x multiply [[Shaders|shader]] to over-brighten. This example uses vertex color, but a light map could easily be used instead. Image by [http://ericchadwick.com/|Eric Chadwick].]]<br clear="all"/>
+
[[image:20110422_multiply4x.jpg|thumb|600px|left|Multiplying vertex color onto a texture, using a 4x multiply [[Shaders|shader]] to over-brighten. This example uses vertex color, but a light map could easily be used instead. Image by [http://ericchadwick.com/ Eric Chadwick].]]<br clear="all"/>
  
 
Another type of light mapping called [[Radiosity normal map|Radiosity Normal Mapping]] or Directional Light Mapping is where the light is stored as directions in order to combine it with normal maps to create the appearance of higher-frequency light mapping. For more information see the [http://www.polycount.com/forum/showthread.php?t=76554 Lightmaps: tech pros and cons] thread on Polycount.
 
Another type of light mapping called [[Radiosity normal map|Radiosity Normal Mapping]] or Directional Light Mapping is where the light is stored as directions in order to combine it with normal maps to create the appearance of higher-frequency light mapping. For more information see the [http://www.polycount.com/forum/showthread.php?t=76554 Lightmaps: tech pros and cons] thread on Polycount.
Line 23: Line 23:
 
Some people create the light map UVs with an automatic unwrap & pack algorithm. Automatic unwrapping is faster and easier to create but it tends to waste more texture space, so the light map pixels end up larger on the model, the lighting is more blurry.  
 
Some people create the light map UVs with an automatic unwrap & pack algorithm. Automatic unwrapping is faster and easier to create but it tends to waste more texture space, so the light map pixels end up larger on the model, the lighting is more blurry.  
  
Time-permitting, for the best results it is best to start with a copy of the texture UVs (if they're good), unmirror any mirrored parts that need unique lighting, un-overlap any overlaps that need unique lighting, and scale up the UVs for areas that need greater lighting detail. Then pack them all into the 0-1 UV square with appropriate [[Edge Padding]] space between the UVs.  
+
Time-permitting, for the best results it is best to start with a copy of the texture UVs (if they're good), unmirror any mirrored parts that need unique lighting, un-overlap any overlaps that need unique lighting, and scale up the UVs for areas that need greater lighting detail. Then pack them all into the 0-1 UV square with appropriate [[Edge padding]] space between the UVs.  
  
 
When an artist manually tunes the UVs by overlapping/mirroring parts they know will receive identical lighting, and scaling up areas that have higher-frequency shadows, this allows the light map to have a higher apparent texture resolution. If overlaps are used, they should be moved at least 1 unit outside the UV square to avoid rendering errors when the lighting is baked.
 
When an artist manually tunes the UVs by overlapping/mirroring parts they know will receive identical lighting, and scaling up areas that have higher-frequency shadows, this allows the light map to have a higher apparent texture resolution. If overlaps are used, they should be moved at least 1 unit outside the UV square to avoid rendering errors when the lighting is baked.
Line 35: Line 35:
 
* [http://www.scriptspot.com/3ds-max/scripts/texture-atlas-generator Texture Atlas Generator]
 
* [http://www.scriptspot.com/3ds-max/scripts/texture-atlas-generator Texture Atlas Generator]
 
* [[RadiosityNormalMap]]
 
* [[RadiosityNormalMap]]
* [[Category:TextureCoordinates]]
 
  
 
== Software ==
 
== Software ==

Latest revision as of 13:20, 14 March 2015

Light Map

A texture that stores pre-rendered lighting, because dynamic real-time lighting typically doesn't look as nice and can be a performance hog.

Because the light map lighting is baked ahead of time the artist can use a non-real-time lighting techniques like radiosity, which can take many minutes to render. This allows the surfaces to receive bounce lighting, soft shadowing, color bleeding, etc., for a very realistic-looking result.

Multiply light mapping for the iPhone, original size. Image by Thomas "sama.van" Varoux.

Traditionally, light maps store the color and brightness of pre-baked lighting. The Diffuse map is applied to the mesh with no lighting (like an Emissive map), and the light map is then multiplied against it, darkening the diffuse where the light map has shadows.

Because the light map is multiplicative, this can only darken the surface.

However, an over-multiply technique can be used instead to get an "over-exposed" look, where the light map is multiplied two or more times. If it is multiplied 2x this means middle-gray will cause the diffuse map to render at its regular intensity, while brighter light map values will cause over-brightening, and darker values will still darken the color map. If multiplied 4x then 1/4 gray becomes the middle value.

Multiplying vertex color onto a texture, using a 4x multiply shader to over-brighten. This example uses vertex color, but a light map could easily be used instead. Image by Eric Chadwick.

Another type of light mapping called Radiosity Normal Mapping or Directional Light Mapping is where the light is stored as directions in order to combine it with normal maps to create the appearance of higher-frequency light mapping. For more information see the Lightmaps: tech pros and cons thread on Polycount.

Light Map Texture Coordinates

Typically a light map requires each mesh to have a second set of UV texture coordinates, where every surface that will receive lighting needs to have its own unique space within the 0-1 UV square.

To help reduce the number of rendering batches, it is best to combine a bunch of meshes together into the same light map, giving each mesh its own UV space as needed. Often a game level is divided up into a sequence of light maps, each covering either a geographic area or a combination of props used throughout the level.

Some people create the light map UVs with an automatic unwrap & pack algorithm. Automatic unwrapping is faster and easier to create but it tends to waste more texture space, so the light map pixels end up larger on the model, the lighting is more blurry.

Time-permitting, for the best results it is best to start with a copy of the texture UVs (if they're good), unmirror any mirrored parts that need unique lighting, un-overlap any overlaps that need unique lighting, and scale up the UVs for areas that need greater lighting detail. Then pack them all into the 0-1 UV square with appropriate Edge padding space between the UVs.

When an artist manually tunes the UVs by overlapping/mirroring parts they know will receive identical lighting, and scaling up areas that have higher-frequency shadows, this allows the light map to have a higher apparent texture resolution. If overlaps are used, they should be moved at least 1 unit outside the UV square to avoid rendering errors when the lighting is baked.

More Information

Software


Personal tools
Namespaces

Variants
Actions
Navigation
Tools