NormalMap

What Is a Normal Map?

A normal map is a texture where each pixel records the direction the surface faces, instead of its colour. Renderers use that direction to shade bumps and grooves that are not in the geometry, so a simple flat model can look richly detailed. Here is what that actually means in practice.

Quick answer: A normal map is a texture that stores a surface direction (red=X, green=Y, blue=Z) per pixel, so a flat model can look detailed without extra geometry. Flat areas read as 128,128,255 - which is why normal maps look blue.

The short definition

A normal map is an RGB image in which the red, green and blue channels store the X, Y and Z components of a surface normal vector. The values are mapped from the range -1..1 into 0..255, so a flat surface that faces the viewer encodes as roughly (128, 128, 255) - a medium red, medium green, full blue. That is why a normal map with no detail looks like a flat lavender colour.

Why normal maps are mostly blue

The blue channel holds the Z direction, which for a visible surface points mostly out toward the camera. Since that value is near the maximum, the blue channel is near 255 almost everywhere, tinting the whole texture blue-purple. Only steep slopes push red or green away from the middle, which is why sharp edges show as red or green lines.

Tangent space vs object space

Almost all game and 3D normal maps are tangent-space: the directions are relative to the surface and its UV layout, so the same map works on many meshes. Object-space maps encode directions in the model's own coordinates and cannot be reused across shapes. Tangent-space is what this site generates.

What normal maps cannot do

A normal map changes shading only - it cannot change the silhouette, cast geometry shadows, or move the outline of an object. For that you need displacement or actual polygons. It also cannot fix a bad UV layout or a low-resolution diffuse map.

Frequently Asked Questions

What does a normal map look like?
Mostly light blue-purple. Flat areas sit near (128, 128, 255); edges and bumps show as red or green gradients where the surface tilts.
Is a normal map 3D?
No. It is a 2D image that encodes 3D direction data per pixel. It looks flat but tells the renderer how light should bounce.
Do I need a normal map for every model?
No. Use one when you want surface detail without extra geometry - hard surfaces, environments and props benefit most. Stylised or low-detail assets often do not need one.

Related Tools