UV Export: add option to export UV tiles #104940

Merged
Damien Picard merged 4 commits from pioverfour/blender-addons:dp_export_uv_udim into main 2023-10-09 22:32:24 +02:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 15902b2918 - Show all commits

View File

@ -219,7 +219,8 @@ class ExportUVLayout(bpy.types.Operator):
x -= 1
if y > 0 and v < y + 1e-6:
y -= 1
tiles.add((x, y))
if x >= 0 and y >= 0:
tiles.add((x, y))
return tiles
@staticmethod