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:
Diffstat (limited to 'uv_magic_uv/op/copy_paste_uv.py')
-rw-r--r--uv_magic_uv/op/copy_paste_uv.py48
1 files changed, 24 insertions, 24 deletions
diff --git a/uv_magic_uv/op/copy_paste_uv.py b/uv_magic_uv/op/copy_paste_uv.py
index 11489f8c..d1070d90 100644
--- a/uv_magic_uv/op/copy_paste_uv.py
+++ b/uv_magic_uv/op/copy_paste_uv.py
@@ -280,17 +280,17 @@ class _Properties:
scene.muv_props.copy_paste_uv = Props()
scene.muv_props.copy_paste_uv_selseq = Props()
- scene.muv_copy_paste_uv_enabled: BoolProperty(
+ scene.muv_copy_paste_uv_enabled = BoolProperty(
name="Copy/Paste UV Enabled",
description="Copy/Paste UV is enabled",
default=False
)
- scene.muv_copy_paste_uv_copy_seams: BoolProperty(
+ scene.muv_copy_paste_uv_copy_seams = BoolProperty(
name="Seams",
description="Copy Seams",
default=True
)
- scene.muv_copy_paste_uv_mode: EnumProperty(
+ scene.muv_copy_paste_uv_mode = EnumProperty(
items=[
('DEFAULT', "Default", "Default Mode"),
('SEL_SEQ', "Selection Sequence", "Selection Sequence Mode")
@@ -299,7 +299,7 @@ class _Properties:
description="Copy/Paste UV Mode",
default='DEFAULT'
)
- scene.muv_copy_paste_uv_strategy: EnumProperty(
+ scene.muv_copy_paste_uv_strategy = EnumProperty(
name="Strategy",
description="Paste Strategy",
items=[
@@ -326,12 +326,12 @@ class MUV_OT_CopyPasteUV_CopyUV(bpy.types.Operator):
Operation class: Copy UV coordinate
"""
- bl_idname = "uv.muv_copy_paste_uv_operator_copy_uv"
+ bl_idname = "uv.muv_ot_copy_paste_uv_copy_uv"
bl_label = "Copy UV"
bl_description = "Copy UV coordinate"
bl_options = {'REGISTER', 'UNDO'}
- uv_map: StringProperty(default="__default", options={'HIDDEN'})
+ uv_map = StringProperty(default="__default", options={'HIDDEN'})
@classmethod
def poll(cls, context):
@@ -368,7 +368,7 @@ class MUV_MT_CopyPasteUV_CopyUV(bpy.types.Menu):
Menu class: Copy UV coordinate
"""
- bl_idname = "uv.muv_copy_paste_uv_menu_copy_uv"
+ bl_idname = "uv.muv_mt_copy_paste_uv_copy_uv"
bl_label = "Copy UV (Menu)"
bl_description = "Menu of Copy UV coordinate"
@@ -403,13 +403,13 @@ class MUV_OT_CopyPasteUV_PasteUV(bpy.types.Operator):
Operation class: Paste UV coordinate
"""
- bl_idname = "uv.muv_copy_paste_uv_operator_paste_uv"
+ bl_idname = "uv.muv_ot_copy_paste_uv_paste_uv"
bl_label = "Paste UV"
bl_description = "Paste UV coordinate"
bl_options = {'REGISTER', 'UNDO'}
- uv_map: StringProperty(default="__default", options={'HIDDEN'})
- strategy: EnumProperty(
+ uv_map = StringProperty(default="__default", options={'HIDDEN'})
+ strategy = EnumProperty(
name="Strategy",
description="Paste Strategy",
items=[
@@ -418,18 +418,18 @@ class MUV_OT_CopyPasteUV_PasteUV(bpy.types.Operator):
],
default="N_M"
)
- flip_copied_uv: BoolProperty(
+ flip_copied_uv = BoolProperty(
name="Flip Copied UV",
description="Flip Copied UV...",
default=False
)
- rotate_copied_uv: IntProperty(
+ rotate_copied_uv = IntProperty(
default=0,
name="Rotate Copied UV",
min=0,
max=30
)
- copy_seams: BoolProperty(
+ copy_seams = BoolProperty(
name="Seams",
description="Copy Seams",
default=True
@@ -491,7 +491,7 @@ class MUV_MT_CopyPasteUV_PasteUV(bpy.types.Menu):
Menu class: Paste UV coordinate
"""
- bl_idname = "uv.muv_copy_paste_uv_menu_paste_uv"
+ bl_idname = "uv.muv_mt_copy_paste_uv_paste_uv"
bl_label = "Paste UV (Menu)"
bl_description = "Menu of Paste UV coordinate"
@@ -543,12 +543,12 @@ class MUV_OT_CopyPasteUV_SelSeqCopyUV(bpy.types.Operator):
Operation class: Copy UV coordinate by selection sequence
"""
- bl_idname = "uv.muv_copy_paste_uv_operator_selseq_copy_uv"
+ bl_idname = "uv.muv_ot_copy_paste_uv_selseq_copy_uv"
bl_label = "Copy UV (Selection Sequence)"
bl_description = "Copy UV data by selection sequence"
bl_options = {'REGISTER', 'UNDO'}
- uv_map: StringProperty(default="__default", options={'HIDDEN'})
+ uv_map = StringProperty(default="__default", options={'HIDDEN'})
@classmethod
def poll(cls, context):
@@ -585,7 +585,7 @@ class MUV_MT_CopyPasteUV_SelSeqCopyUV(bpy.types.Menu):
Menu class: Copy UV coordinate by selection sequence
"""
- bl_idname = "uv.muv_copy_paste_uv_menu_selseq_copy_uv"
+ bl_idname = "uv.muv_mt_copy_paste_uv_selseq_copy_uv"
bl_label = "Copy UV (Selection Sequence) (Menu)"
bl_description = "Menu of Copy UV coordinate by selection sequence"
@@ -620,13 +620,13 @@ class MUV_OT_CopyPasteUV_SelSeqPasteUV(bpy.types.Operator):
Operation class: Paste UV coordinate by selection sequence
"""
- bl_idname = "uv.muv_copy_paste_uv_operator_selseq_paste_uv"
+ bl_idname = "uv.muv_ot_copy_paste_uv_selseq_paste_uv"
bl_label = "Paste UV (Selection Sequence)"
bl_description = "Paste UV coordinate by selection sequence"
bl_options = {'REGISTER', 'UNDO'}
- uv_map: StringProperty(default="__default", options={'HIDDEN'})
- strategy: EnumProperty(
+ uv_map = StringProperty(default="__default", options={'HIDDEN'})
+ strategy = EnumProperty(
name="Strategy",
description="Paste Strategy",
items=[
@@ -635,18 +635,18 @@ class MUV_OT_CopyPasteUV_SelSeqPasteUV(bpy.types.Operator):
],
default="N_M"
)
- flip_copied_uv: BoolProperty(
+ flip_copied_uv = BoolProperty(
name="Flip Copied UV",
description="Flip Copied UV...",
default=False
)
- rotate_copied_uv: IntProperty(
+ rotate_copied_uv = IntProperty(
default=0,
name="Rotate Copied UV",
min=0,
max=30
)
- copy_seams: BoolProperty(
+ copy_seams = BoolProperty(
name="Seams",
description="Copy Seams",
default=True
@@ -709,7 +709,7 @@ class MUV_MT_CopyPasteUV_SelSeqPasteUV(bpy.types.Menu):
Menu class: Paste UV coordinate by selection sequence
"""
- bl_idname = "uv.muv_copy_paste_uv_menu_selseq_paste_uv"
+ bl_idname = "uv.muv_mt_copy_paste_uv_selseq_paste_uv"
bl_label = "Paste UV (Selection Sequence) (Menu)"
bl_description = "Menu of Paste UV coordinate by selection sequence"