mirror of
https://github.com/blender/blender-addons.git
synced 2025-07-21 23:46:24 +00:00
PLY: Fix T103203 export with UVs
Issue was with incomplete id when exporting with UVs.
This commit is contained in:

committed by
Thomas Dinges

parent
49e56c1844
commit
7408fc7283
@ -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).
|
||||
|
Reference in New Issue
Block a user