Normal Map Export

Preparation

Three's Blender exporter supports the export of other types of texture in addition to simple diffuse color textures. We will show how to use specular, ambient occlusion, and normal map textures in addition to the diffuse texture.

Diffuse textures specify the color across the model. Specular textures specify shininess, i.e. reflective highlights. Ambient occlusion textures specify the amount of ambient lighting, and allow crevices and corners to be darker than the rest of the model. Normal maps specify the angle of the surface and provide the illusion of finer scale shape variations than are represented in the actual faces of the model.

These additional texture types can add a lot, but where do you get them? The easiest way to get started is to use a tool that guesses the normal map, specular, and ambient occlusion textures from the diffuse texture. Of course, the diffuse texture does not contain enough information to guarantee the results; the software simply makes an intelligent guess based on the provided texture. Shader Map is one (Windows-only) tool that produces normal, specular and ambient occlusion maps from a normal texture.

The full version of Shader Map has a nice GUI and a free demo, but the full version is purchase only. However, you can do quite a lot using the free command line version. You should execute the following command after installing one time to configure shader map to export *.png image files.
shadermap fprop -norm (PNG24,_NORM) -spec (PNG24,_SPEC) -ambo (PNG24,_AMBO)
An example command line that generates all the basic maps is shadermap cdiff "C:\full\path\from\root\of\drive\mytexture.png" -v -norm (100,100,0,0) -spec (100,-20,60,0) -ambo (100,10,15,70,12,0,0).

If you don't want to experiment with texture generation tools right now, a set of pre-generated textures useful for testing is available here. The diffuse texture was used to generate the others via the command above. The orginal diffuse texture is from Mayang.com.

Testing

We will quickly create a simple cube, apply four textures to it, and visualize it using Three. Have your textures handy before starting. Follow all the instructions in the Basic Model Export test, except as noted below.

Instead of using the "Smart UV Project" unwrap method, simply choose "Unwrap" instead. This will result in having the complete texture mapped to each of the six sides of the cube.

Instructions for applying each of the four textures is given below. Press the Textures context button in the Properties editor. There is a default texture named "Tex" already present. Delete it by pressing the X button below. For each texture type (diffuse, specular, ambient occlusion, and normal map) follow these steps.

  1. Click on an empty texture slot.
  2. Click the New button.
  3. Change the texture name to something sensible.
  4. Change the texture type to "Image or Movie".
  5. In the Image pane, click Open, browse to the texture, and click Open Image.
  6. Leave the Image Sampling pane alone, except for the normal map texture. For that one, check the Normal Map box.
  7. In the Influence pane, check the box that corresponds to the texture type.
    • For diffuse textures, check the "Diffuse: Color" box.
    • For specular textures, check the "Specular: Intensity" box.
    • For ambient occlusion textures, check the "Shading: Ambient" box.
    • For normal map textures, check the "Geometry: Normal" box.

Export and render the model as in the basic example.