Light maps...what are they?

I was reading about game engines and effects and I stumbled upon a term I can’t find anywhere.

What is a light map. According to gamedev “A special type of image map that, when applied, affects the intensity of the texture of an object.”

might as well be talking another language, because it all seems Greek to me. Not enough detail to fully describe and no images to demonstrate.

Would anyone mind explaining it a bit more thoroughly?

a light map is a second texture applied to a surface. So lets say you have a cobblestone ground surround by some buildings. You only want to use a small repeating texture for the cobblestone. Now you want to fake shadows being cast by the buildings. The shadows need to somehow now work with the cobblestone texture you already have. Blender can assign a new uv layout for the ground that will store the lightmap information. Now blender can mix the cobblestone and the shadows using the two uv layouts and display the results. So the ground will be dark where the lightmap had a shadow and normal otherwise.

still confused I hope not.

I’m starting to wrap around it. So, light maps are used to fake shadows to save resources instead of rendering light?

Is it kind of like UV texture baking?

Yep, most game engines can’t even produce casted shadows, like those from the building on to the ground. New game engines normal can though. The blender GE does shadows based on face orientation. So if a face is pointing towards a light or the face pointing away determines the “illumination” of the face.

And to make the lightmaps the easiest way in blender would likely be to use texture baking.

Not only shadows of static objects, lightmaps are the main tool to create the appearance of natural lighting, especially the diffuse (indirect) light which doesn’t create hard shadows. Realtime GI is just not feasible (yet), and as said the texture maps are often high-resolution and get re-used or tiled several times, whereas a lightmap for diffuse light may have a low resolution but covers the whole geometry…

Some good picture examples are here: http://www.frecle.net/giles/index.php?id=2

Keep in mind that this is realtime and you can move around! Commercial application, but nice one