When I export a model to an obj file it always seems to have more than one normal per vertex. More precisely, every vertex seems to have only one position but a different normal for every triangle it's a part of. Sometimes there are duplicate normals in the list. For instance, this .obj file:
Describes this mesh (shown with normals rendered in yellow):
There are 5 vertices but 18 normals. The vertex on the top is part of three different tris, so it has three different normals. The ones on the sides are part of four tris, so they have four normals, but they come in identical pairs.
This works well for lighting, but for some other things I'm doing I need there to be only one normal per vertex. In some other 3D modelling programs this is called smoothing the normals, a process which takes a weighted average of all the normals at a vertex, taking into account the size of the faces the vertex is part of. I could try and write something like this myself, but it seems like the kind of thing that should be built into Mod Tool. Is there some option to smooth the normals before exporting to OBJ?