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_tissue/uv_to_mesh.py')
-rw-r--r--mesh_tissue/uv_to_mesh.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/mesh_tissue/uv_to_mesh.py b/mesh_tissue/uv_to_mesh.py
index f502c147..928fa3f5 100644
--- a/mesh_tissue/uv_to_mesh.py
+++ b/mesh_tissue/uv_to_mesh.py
@@ -53,22 +53,22 @@ class uv_to_mesh(Operator):
bl_description = ("Create a new Mesh based on active UV")
bl_options = {'REGISTER', 'UNDO'}
- apply_modifiers = BoolProperty(
+ apply_modifiers: BoolProperty(
name="Apply Modifiers",
default=False,
description="Apply object's modifiers"
)
- vertex_groups = BoolProperty(
+ vertex_groups: BoolProperty(
name="Keep Vertex Groups",
default=False,
description="Transfer all the Vertex Groups"
)
- materials = BoolProperty(
+ materials: BoolProperty(
name="Keep Materials",
default=True,
description="Transfer all the Materials"
)
- auto_scale = BoolProperty(
+ auto_scale: BoolProperty(
name="Resize",
default=True,
description="Scale the new object in order to preserve the average surface area"