Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornutti <nutti.metro@gmail.com>2020-08-10 10:07:26 +0300
committernutti <nutti.metro@gmail.com>2020-08-10 10:24:28 +0300
commit8db46434a4b25569372a7172f83733ec14dffb31 (patch)
treef981b15847246b0ffb054cc4d87083b2ec394fda /magic_uv/ui/IMAGE_MT_uvs.py
parent7084d19ef5886b740b65ba6a4234849859e0e5b8 (diff)
Magic UV: Release v6.3
Added features - Clip UV Updated features - World Scale UV * Add option "Area Calculation Method" * Add option "Only Selected" - UVW * Support multiple objects - Select UV * Support multiple objects - UV Inspection * Add Paint UV Island feature * Support multiple objects Other updates - Fix bugs - Optimization
Diffstat (limited to 'magic_uv/ui/IMAGE_MT_uvs.py')
-rw-r--r--magic_uv/ui/IMAGE_MT_uvs.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/magic_uv/ui/IMAGE_MT_uvs.py b/magic_uv/ui/IMAGE_MT_uvs.py
index 74e796cc..00d95d9e 100644
--- a/magic_uv/ui/IMAGE_MT_uvs.py
+++ b/magic_uv/ui/IMAGE_MT_uvs.py
@@ -20,8 +20,8 @@
__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
-__version__ = "6.2"
-__date__ = "31 Jul 2019"
+__version__ = "6.3"
+__date__ = "10 Aug 2020"
import bpy
@@ -39,7 +39,10 @@ from ..op.select_uv import (
MUV_OT_SelectUV_SelectOverlapped,
MUV_OT_SelectUV_SelectFlipped,
)
-from ..op.uv_inspection import MUV_OT_UVInspection_Update
+from ..op.uv_inspection import (
+ MUV_OT_UVInspection_Update,
+ MUV_OT_UVInspection_PaintUVIsland,
+)
from ..utils.bl_class_registry import BlClassRegistry
@@ -184,5 +187,8 @@ class MUV_MT_UVInspection(bpy.types.Menu):
layout = self.layout
sc = context.scene
- layout.prop(sc, "muv_uv_inspection_show", text="UV Inspection")
+ layout.prop(sc, "muv_uv_inspection_show",
+ text="Show Overlapped/Flipped")
layout.operator(MUV_OT_UVInspection_Update.bl_idname, text="Update")
+ layout.separator()
+ layout.operator(MUV_OT_UVInspection_PaintUVIsland.bl_idname)