Hello, I’m trying to build a wall from elements. The attached image shows a mesh element in 3ds max and then imported to Unity. I try to understand why seams are visible. Positions and normals of adjacent vertices are the same (they overlap).
CombineChildren doesn’t help. It would helped if it merged vertices and created submeshes for different materials.
the normals aren’t okey.
The reason it does not work is that the normals don’t get normalized across the adjacent surfaces.
The only case where this would work correctly without a visual glitch is the one case where the vertices do not have any normals at all basically, where only the normals of the faces are used (technically this means that you have distinct vertices for each face so each vertex can have the same normal as the triangle to which it belongs) and even that only works if you use exactly the same blocks over and over again.
In any other case you will need to use the combine children script that comes with unity and let it combine multiple meshes into one and then execute RecalculateNormals on the resulting mesh