@Joe_Kerr, while looking at the color representation of normals can give you a general understanding of a surface, it does put a large mental task on you to decipher what you are seeing. Let me back up a bit and describe what you are seeing so that we can set a baseline.
Mesh normals are an array of vectors that each vertex has as one parameter (others are position and UV) to help describe a mesh. Each vertex is given a vector that indicates which way the triangulated face will be pointing (the front face). This vector is typically described in the range of -1 to 1 and can generally be understood by looking at the vector. A value of (0, 1, 0) would be pointing directly up while (0, -1, 0) would be pointing down. And a value of (1, 1, 0) would be a 45-degree vector coplanar with the X-Y plane. When we display the normals on the mesh, we are remaping the range of -1 to 1 to a range of 0 to 1 so they can be displayed as a color as any value below 0 would be clipped when viewed as a color. This means that a value of blue (0, 0, 1) as displayed as a color in our normal debug display actually be a vector of (-1, -1, 1) since the values of 0 in X and Y would have been remapped from -1 to 0. This means that a lot of the color display will not give you very good information about what the actual vectors are unless you are able to discern between colors that are very close. However, large changes in colors, like @mawa mentioned, can give you an indication on faces that are pointing in very different directions.
Other complications here include that the debug display will be in local space and not world space. You can tell this because if you turn on the debug display and then rotate the mesh, you can see that the colors do not change on the model. This means that the display is in local space and not world space, which means that there is a conversion needed to determine the world space vector of a face. The other thing to remember here is that the handedness of the scene will determine the winding order of the triangle list of the mesh which determines which is the front face of the mesh. If you reverse the winding order of a mesh, it basically means that the entire mesh will be reversed so front faces become back faces and vice versa.
This is a lot of words to describe the concept, so it will be helpful if I show a few examples. Fortunately, I have on hand a mesh that I tinkered with for another forum thread talking about booleans and this mesh shows some large changes in the mesh right next to each other. This is the Stanford bunny with some booleans out of the side:
Turning on the debug normal display shows some large changes in color which indicate a drastic change in the normal:
You can also determine when faces are likely pointing in the same direction in different parts of the mesh like this where the inside of the boolean has similar colors to the back of the bunny, so these faces are likely pointing in similar directions:
Like I say, this is normalized color, so the vectors have been remapped to 0-1, and they are displayed in local space, so understanding where the normal points in world space only from this display is very difficult as we don’t have information about the actual rotation of the mesh in world space from this display only. However, using the Render vertex normals
debug display can help you understand the normal directions without the mental gymnastics of understanding how to translate a color to a vector:
The other thing that you will see with this display is if your vertices are split or averaged. You can also see this in your mesh, if the edges of your triangles are well defined by the light, this means your vertices are split and each one has their own normal perpendicular to the triangle face. If your mesh is smooth and you can’t see any faceting in the lighting from the mesh, then your vertices have been merged and have one normal averaged from all surrounding triangle faces. As you can see below, each of the intersections of the triangles have 6 normals being displayed. The one centered in the image is the easiest to see:
This is because six triangles all meet in a single point and one vertex for each triangle with its own normal perpendicular to the triangle that it belongs to is overlapping in that location. If the mesh had “smoothed” or “averaged” normals, there would be only one vertex with a normal direction averaged from each connected triangle at that location.
So if you are trying to determine the direction of face normals, I would always suggest using the Render vertex normals
debug view. However, if you are just trying to get a general sense of the normals of a mesh to determine if they look reasonable or if areas that should be pointing in the same direction or opposite directions in fact are, then the Display normals
debug view is very good for that. This is because, as you can see from the examples above, on a complex mesh with a lot of vertices, rendering vertex normals can actually obscure portions of the mesh which can slow you down in inspecting the mesh.
I hope this explanation helps you understand what you are seeing and when to use each debug display. However, if I missed anything that you have question on, please feel free to ping back.