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/op/copy_paste_uv_object.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/op/copy_paste_uv_object.py')
-rw-r--r--magic_uv/op/copy_paste_uv_object.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/magic_uv/op/copy_paste_uv_object.py b/magic_uv/op/copy_paste_uv_object.py
index 23ff412b..0b26d1c3 100644
--- a/magic_uv/op/copy_paste_uv_object.py
+++ b/magic_uv/op/copy_paste_uv_object.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 bmesh
import bpy
@@ -103,7 +103,7 @@ class MUV_OT_CopyPasteUVObject_CopyUV(bpy.types.Operator):
Operation class: Copy UV coordinate among objects
"""
- bl_idname = "object.muv_ot_copy_paste_uv_object_copy_uv"
+ bl_idname = "object.muv_copy_paste_uv_object_copy_uv"
bl_label = "Copy UV (Among Objects)"
bl_description = "Copy UV coordinate (Among Objects)"
bl_options = {'REGISTER', 'UNDO'}
@@ -147,7 +147,7 @@ class MUV_MT_CopyPasteUVObject_CopyUV(bpy.types.Menu):
Menu class: Copy UV coordinate among objects
"""
- bl_idname = "object.muv_mt_copy_paste_uv_object_copy_uv"
+ bl_idname = "MUV_MT_CopyPasteUVObject_CopyUV"
bl_label = "Copy UV (Among Objects) (Menu)"
bl_description = "Menu of Copy UV coordinate (Among Objects)"
@@ -181,7 +181,7 @@ class MUV_OT_CopyPasteUVObject_PasteUV(bpy.types.Operator):
Operation class: Paste UV coordinate among objects
"""
- bl_idname = "object.muv_ot_copy_paste_uv_object_paste_uv"
+ bl_idname = "object.muv_copy_paste_uv_object_paste_uv"
bl_label = "Paste UV (Among Objects)"
bl_description = "Paste UV coordinate (Among Objects)"
bl_options = {'REGISTER', 'UNDO'}
@@ -260,7 +260,7 @@ class MUV_MT_CopyPasteUVObject_PasteUV(bpy.types.Menu):
Menu class: Paste UV coordinate among objects
"""
- bl_idname = "object.muv_mt_copy_paste_uv_object_paste_uv"
+ bl_idname = "MUV_MT_CopyPasteUVObject_PasteUV"
bl_label = "Paste UV (Among Objects) (Menu)"
bl_description = "Menu of Paste UV coordinate (Among Objects)"