Browse Source

Fix vertex duplication

pull/309/head
Jrius 2 years ago
parent
commit
cb63255fb4
  1. 2
      korman/exporter/mesh.py

2
korman/exporter/mesh.py

@ -440,7 +440,7 @@ class MeshConverter(_MeshManager):
# Convert to per-material indices
for j, vertex in enumerate(tessface.vertices):
uvws = tuple([uvw[j] for uvw in tessface_uvws])
uvws = tuple([tuple(uvw[j]) for uvw in tessface_uvws])
# Calculate vertex colors.
if mat2span_LUT:

Loading…
Cancel
Save