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/flip_rotate_uv.py')
-rw-r--r--uv_magic_uv/op/flip_rotate_uv.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/uv_magic_uv/op/flip_rotate_uv.py b/uv_magic_uv/op/flip_rotate_uv.py
index 2ecab254..0ff38145 100644
--- a/uv_magic_uv/op/flip_rotate_uv.py
+++ b/uv_magic_uv/op/flip_rotate_uv.py
@@ -144,12 +144,12 @@ class _Properties:
@classmethod
def init_props(cls, scene):
- scene.muv_flip_rotate_uv_enabled = BoolProperty(
+ scene.muv_flip_rotate_uv_enabled: BoolProperty(
name="Flip/Rotate UV Enabled",
description="Flip/Rotate UV is enabled",
default=False
)
- scene.muv_flip_rotate_uv_seams = BoolProperty(
+ scene.muv_flip_rotate_uv_seams: BoolProperty(
name="Seams",
description="Seams",
default=True
@@ -173,18 +173,18 @@ class MUV_OT_FlipRotate(bpy.types.Operator):
bl_description = "Flip/Rotate UV coordinate"
bl_options = {'REGISTER', 'UNDO'}
- flip = BoolProperty(
+ flip: BoolProperty(
name="Flip UV",
description="Flip UV...",
default=False
)
- rotate = IntProperty(
+ rotate: IntProperty(
default=0,
name="Rotate UV",
min=0,
max=30
)
- seams = BoolProperty(
+ seams: BoolProperty(
name="Seams",
description="Seams",
default=True