I have a model with more than 500.000 polygons and I want to speed up the drawing process in my game. So I decided to use a lowpoly model and normal mapping, but found no software to get a lowpoly model from my hipoly model. Does anyone have an idea how to do this?
|
|
For an automated process, MeshLab can decimate meshes reasonably. If you want more control, lots of 3d modeling packages have retopo tools. Blender with the 'Remesh' or 'Decimate' modifier can also do a good job. |
|||
|
|
|
Give Progressive Meshes a read (PDF). Scroll to the very end to see some pictures of his results. Obviously that document goes way further than what you're looking for, but the fundamentals of simplification are there. Basically, for some n edges, turn them into vertices by averaging their two endpoints. The more times you do this, the simpler your mesh will be while maintaining the same rough shape. For best results, get rid of smallest edges first, and try to avoid getting rid of edges on sharp corners or high detail areas. These can usually be detected by using the surface normals. |
|||
|
|
