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
parent 45778689d9
commit 60299fcc23
Notes: blender-bot 2023-02-14 18:18:17 +01:00
Referenced by issue blender/blender#102967: 3.4: Potential candidates for corrective releases
Referenced by issue blender/blender#100749: Blender LTS: Maintenance Task 3.3
Referenced by issue blender/blender#100749, Blender LTS: Maintenance Task 3.3
Referenced by issue blender/blender#102967, 3.4: Potential candidates for corrective releases
Referenced by issue #103203, PLY export creates mesh with missing faces in Blender >= 3.1.0
Referenced by issue #103199, PLY Exporter is broken on specific models
Referenced by issue #99249, Ply Exporter broken with use_uv=True if uv non-unique
1 changed files with 1 additions and 1 deletions

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