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 'mesh_auto_mirror.py')
-rw-r--r--mesh_auto_mirror.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/mesh_auto_mirror.py b/mesh_auto_mirror.py
index 63952b7f..fa0663af 100644
--- a/mesh_auto_mirror.py
+++ b/mesh_auto_mirror.py
@@ -208,7 +208,7 @@ class BisectMirror(Panel):
class AutoMirrorProperties(PropertyGroup):
- axis = EnumProperty(
+ axis: EnumProperty(
name="Axis",
items=[
("x", "X", "", 1),
@@ -217,7 +217,7 @@ class AutoMirrorProperties(PropertyGroup):
],
description="Axis used by the mirror modifier"
)
- orientation = EnumProperty(
+ orientation: EnumProperty(
name="Orientation",
items=[
("positive", "Positive", "", 1),
@@ -225,34 +225,34 @@ class AutoMirrorProperties(PropertyGroup):
],
description="Choose the side along the axis of the editable part (+/- coordinates)"
)
- threshold = FloatProperty(
+ threshold: FloatProperty(
default=0.001,
min=0.001,
description="Vertices closer than this distance are merged on the loopcut"
)
- toggle_edit = BoolProperty(
+ toggle_edit: BoolProperty(
name="Toggle Edit Mode",
default=True,
description="If not in Edit mode, change mode to it"
)
- cut = BoolProperty(
+ cut: BoolProperty(
name="Cut",
default=True,
description="If enabled, cut the mesh in two parts and mirror it\n"
"If not, just make a loopcut"
)
- clipping = BoolProperty(
+ clipping: BoolProperty(
default=True
)
- use_clip = BoolProperty(
+ use_clip: BoolProperty(
default=True,
description="Use clipping for the mirror modifier"
)
- show_on_cage = BoolProperty(
+ show_on_cage: BoolProperty(
default=True,
description="Enable editing the cage (it's the classical modifier's option)"
)
- apply_mirror = BoolProperty(
+ apply_mirror: BoolProperty(
description="Apply the mirror modifier (useful to symmetrise the mesh)"
)