Difference between revisions of "Shading"

From OrbiterWiki
Jump to navigation Jump to search
Line 17: Line 17:
 
If the shading is done correct, a model can look much smoother without much more work. Shading is the primary tool when modelling to reduce polycount!
 
If the shading is done correct, a model can look much smoother without much more work. Shading is the primary tool when modelling to reduce polycount!
  
[[Category:Orbiter 3D Model|Shading]] [[Category:Glossary]]
+
[[Category:Orbiter 3D Model|Shading]] [[Category:Glossary]] [[Category:Addon Tutorials]]

Revision as of 14:06, 3 August 2005

Direct3D Gouraud shading

Orbiter uses the vertex normals for Gouraud shading: The information on how to shade is provided by the normals of every vertex in the msh file. (see 3DModel.pfd). If no normals are provided, Direct3D calculates them in realtime by taking the mean of the normals form the surrounding triangles (faces). This results in a smaller msh file, but the shading is smooth for every angle, that means, no sharp edges at all (a cube looks quite odd then). Now, if we want a sharp edge, we have to double the vertex and give it two different normals. This results in a larger filesize. These infos are from here: MSDN library, Getting Started with Direct3D > 3-D Coordinate Systems and Geometry

MeshMaker tool

download MeshMaker from Orbithangar

Msh_MakerV21.exe (see the MshMaker.pdf) solves this problem by assigning a "Material Tension" to each material. Normally this is set to 1 (in radians). This is the max angle between two faces where shading is still aplied. Is the angle higher, Mshmaker generates two vertices resulting in a sharp edge. (->and higher file size) The parameter can be set in the debug.txt.

Just apply different materials for groups that need different shading angles.

Summary

If the shading is done correct, a model can look much smoother without much more work. Shading is the primary tool when modelling to reduce polycount!