1

I am working on cycle render using MakeHuman model. On MakeHuman , model has some texture images. I remark for example when I do a person with t-shirt that there is two images shirt_normals.png and shirt_texture.png. In the Node mode, I rely these images as mentioned in the below image. What is the difference between these images? And is my work is correct? Because, I could not remark any effect of the shirt_normals.png image. enter image description here

BetterEnglish
  • 2,000
  • 4
  • 29
  • 53

1 Answers1

1

The texture (usually called a diffuse map) simply affects the color of the object. The normal map affects the normals to create a bump-mapping effect. This works by converting the red and green channels of the normal map to x and y (or y and x, I forget which) rotation of the surface normals (0.5 being straight up, or no change) to simulate small bumps and surface details for added realism. (The blue channel is actually ignored, though it is usually set at 0.5 as well which makes for the distinctive pinkish/bluish color of a normal map.)

As for your setup, you have two problems:

  1. You need to send the normal map through the color input of a vector > normal map node and the normal output of that to the normal input of the shaders.

  2. You are giving the normal map normals as mapping coordinates, all texture maps should have the same mapping coordinates. In this case it looks like you are using generated for the diffuse so you should use generated coordinates for the normal map as well.

enter image description here
Credit to @Vladimir for image, this is a croped version of his screenshot as I don't have Blender available at the moment.

PGmath
  • 25,106
  • 17
  • 103
  • 199