Hello,
We are looking at producing assets without subdivisions (subdivisionScheme = “none”
).
The assets are produced in Maya using a low polygon approach where the modeler choose the edge “hardness” manually.
In maya, the notion of “smooth” or “hard” edge controls the normals of the vertices of that edge.
If the edge is “hard” the normals are split per face, so the vertex has as many normals as adjacent faces.
If the edge is “smooth” the vertex has a single normal, being the mean of the normal of adjacent faces.
The look of the mesh is generated from this information.
From my investigation, it seems that USD cannot store this king of data.
Normals are either implicite (when using a subdivisionScheme which “define their own normals”) or explicit per vertex per face.
I know from experience that Alembic stores normals like USD, per vertex per face or nothing.
From my understanding, it looks like both Alembic and USD have been created to handle subdivision mesh and thus per edge normal has not been implemented.
Do you know the reason for this implementation ?
Would it make sens to allow the declaration of edge hardness ? (since a crease value per edge already exists).
Or maybe using the crease value to compute the normal even without subdivisionScheme.
Having the edge hardness stored rather than the vertex normal would reduce a lot the data size since normals would not be written to disk.