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>2019-05-19 10:45:14 +0300
committerNutti <nutti.metro@gmail.com>2019-05-19 10:45:14 +0300
commitd2808959bb845ec945aa7fac494db42a9228021b (patch)
treec102b9c079a22491de7c60e562ad87124838785c /magic_uv/preferences.py
parent2ce7a5d85cfb21b5832a533af551bfb01502b168 (diff)
Magic UV: Release v6.1
[Update features] - World Scale UV - Add option "Texture" to allow the user to specify the texture for the density calculation [Other updates] - Fix bugs
Diffstat (limited to 'magic_uv/preferences.py')
-rw-r--r--magic_uv/preferences.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/magic_uv/preferences.py b/magic_uv/preferences.py
index 3a024488..ec433e8e 100644
--- a/magic_uv/preferences.py
+++ b/magic_uv/preferences.py
@@ -20,8 +20,8 @@
__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
-__version__ = "6.0"
-__date__ = "26 Jan 2019"
+__version__ = "6.1"
+__date__ = "19 May 2019"
import bpy
from bpy.props import (
@@ -33,7 +33,7 @@ from bpy.props import (
from bpy.types import AddonPreferences
from . import common
-from .op.flip_rotate_uv import MUV_OT_FlipRotate
+from .op.flip_rotate_uv import MUV_OT_FlipRotateUV
from .op.mirror_uv import MUV_OT_MirrorUV
from .op.move_uv import MUV_OT_MoveUV
from .op.unwrap_constraint import MUV_OT_UnwrapConstraint
@@ -77,7 +77,7 @@ def view3d_uvmap_menu_fn(self, context):
layout.separator()
layout.label(text="UV Manipulation", icon=compat.icon('IMAGE'))
# Flip/Rotate UV
- ops = layout.operator(MUV_OT_FlipRotate.bl_idname, text="Flip/Rotate UV")
+ ops = layout.operator(MUV_OT_FlipRotateUV.bl_idname, text="Flip/Rotate UV")
ops.seams = sc.muv_flip_rotate_uv_seams
# Mirror UV
ops = layout.operator(MUV_OT_MirrorUV.bl_idname, text="Mirror UV")
@@ -187,7 +187,7 @@ def get_debug_mode(self):
@BlClassRegistry()
@compat.make_annotations
-class Preferences(AddonPreferences):
+class MUV_Preferences(AddonPreferences):
"""Preferences class: Preferences for this add-on"""
bl_idname = "magic_uv"