From cb63255fb4d96e8fb3fe84d7ac888de31051ac14 Mon Sep 17 00:00:00 2001 From: Jrius <2261279+Jrius@users.noreply.github.com> Date: Wed, 22 Dec 2021 12:55:41 +0100 Subject: [PATCH] Fix vertex duplication --- korman/exporter/mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korman/exporter/mesh.py b/korman/exporter/mesh.py index 2c24c40..2f607a6 100644 --- a/korman/exporter/mesh.py +++ b/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: