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:
authorEugenio Pignataro <info@oscurart.com.ar>2017-01-10 17:01:28 +0300
committerEugenio Pignataro <info@oscurart.com.ar>2017-01-10 17:01:28 +0300
commit2dac418a46c16a348e17b1a9cd5b46650b041dc8 (patch)
treea3b9184c7dbb8a55e09e4cf09e15b788ee3c133c /oscurart_tools/oscurart_shapes.py
parent071aa3e5450991563a5ffe25d442ba06344bdcf6 (diff)
Add Tooltips
Diffstat (limited to 'oscurart_tools/oscurart_shapes.py')
-rw-r--r--oscurart_tools/oscurart_shapes.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/oscurart_tools/oscurart_shapes.py b/oscurart_tools/oscurart_shapes.py
index 10bbd22e..fc05f7e7 100644
--- a/oscurart_tools/oscurart_shapes.py
+++ b/oscurart_tools/oscurart_shapes.py
@@ -69,6 +69,7 @@ def DefSplitShapes(self, ACTIVESHAPE, LAYOUTCOMPAT):
class CreaShapes(Operator):
+ """Divide on left and right the diffenrent Shapekeys. “Create Mix Groups” its required."""
bl_idname = "mesh.split_lr_shapes_osc"
bl_label = "Split LR Shapes"
bl_options = {"REGISTER", "UNDO"}
@@ -102,6 +103,7 @@ class CreaShapes(Operator):
# ----------------------------SHAPES LAYOUT-----------------------
class CreaShapesLayout(Operator):
+ """Creates an interface to control the Shapekeys of symmetrical Objects. “Create Mix Groups” its required."""
bl_idname = "mesh.create_symmetrical_layout_osc"
bl_label = "Symmetrical Layout"
bl_options = {"REGISTER", "UNDO"}
@@ -273,9 +275,9 @@ def createLMRGroups(self, FACTORVG, ADDVG):
class CreaGrupos(Operator):
+ """It creates a vertex group in symmetrical objects, ideal for smoothly mixing shapekeys."""
bl_idname = "mesh.create_lmr_groups_osc"
bl_label = "Create Mix groups"
- bl_description = "Create Mix groups"
bl_options = {'REGISTER', 'UNDO'}
FACTORVG = FloatProperty(
@@ -306,6 +308,7 @@ class CreaGrupos(Operator):
# ------------------------ SHAPES LAYOUT SYMMETRICA ------------------------
class CreateLayoutAsymmetrical(Operator):
+ """Creates an interface to control the Shapekeys of symmetrical Objects. “Create Mix Groups” its required."""
bl_idname = "mesh.create_asymmetrical_layout_osc"
bl_label = "Asymmetrical Layout"
bl_options = {"REGISTER", "UNDO"}
@@ -441,6 +444,7 @@ class CreateLayoutAsymmetrical(Operator):
# ---------------------------SHAPES TO OBJECTS------------------
class ShapeToObjects(Operator):
+ """It creates a new object for every shapekey in the selected object, ideal to export to other 3D software Apps."""
bl_idname = "object.shape_key_to_objects_osc"
bl_label = "Shapes To Objects"
bl_options = {"REGISTER", "UNDO"}