Browse Source

Merge pull request #309 from Jrius/vertex_duplication_fix

Fix vertex duplication
pull/310/head
Adam Johnson 2 years ago committed by GitHub
parent
commit
6ad999ff8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  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