PLY: Fix T103203 export with UVs

Issue was with incomplete id when exporting with UVs.
This commit is contained in:
Mikhail Rachinskiy
2022-12-14 18:16:38 +03:00
committed by Thomas Dinges
parent 49e56c1844
commit 7408fc7283

View File

@ -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).