From 7408fc7283fd98a88db1383f45f5d15680472a7f Mon Sep 17 00:00:00 2001 From: Mikhail Rachinskiy Date: Wed, 14 Dec 2022 18:16:38 +0300 Subject: [PATCH] PLY: Fix T103203 export with UVs Issue was with incomplete id when exporting with UVs. --- io_mesh_ply/export_ply.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_mesh_ply/export_ply.py b/io_mesh_ply/export_ply.py index b3be770c..086bbae9 100644 --- a/io_mesh_ply/export_ply.py +++ b/io_mesh_ply/export_ply.py @@ -78,7 +78,7 @@ def save_mesh(filepath, bm, use_ascii, use_normals, use_uv, use_color): if use_uv: uv = loop[uv_lay].uv[:] - map_id = uv + map_id = v, uv # Identify vertex by pointer unless exporting UVs, # in which case id by UV coordinate (will split edges by seams).