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_meshes.py
parent071aa3e5450991563a5ffe25d442ba06344bdcf6 (diff)
Add Tooltips
Diffstat (limited to 'oscurart_tools/oscurart_meshes.py')
-rw-r--r--oscurart_tools/oscurart_meshes.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/oscurart_tools/oscurart_meshes.py b/oscurart_tools/oscurart_meshes.py
index ae221ff7..67c9623f 100644
--- a/oscurart_tools/oscurart_meshes.py
+++ b/oscurart_tools/oscurart_meshes.py
@@ -77,6 +77,7 @@ def defReconst(self, OFFSET):
class reConst (Operator):
+ """Erase vertices bellow cero X position value and rebuilds the symmetry. It also creates two uv channels, one simmetrical and one asymmetrical."""
bl_idname = "mesh.reconst_osc"
bl_label = "ReConst Mesh"
bl_options = {"REGISTER", "UNDO"}
@@ -120,6 +121,7 @@ def side(self, nombre, offset):
class SelectMenor (Operator):
+ """Selects the vetex with an N position value on the X axis."""
bl_idname = "mesh.select_side_osc"
bl_label = "Select Side"
bl_options = {"REGISTER", "UNDO"}
@@ -149,6 +151,7 @@ class SelectMenor (Operator):
class resymVertexGroups (Operator):
+ """Copies the symetrical weight value of the vertices on the X axys. It needs the XML map."""
bl_idname = "mesh.resym_vertex_weights_osc"
bl_label = "Resym Vertex Weights"
bl_options = {"REGISTER", "UNDO"}
@@ -251,6 +254,7 @@ def reSymMesh(self, SELECTED, SIDE):
class OscResymSave (Operator):
+ """Creates a file on disk that saves the info of every vertex but in simmetry, this info its going to be later used by “Resym Mesh” and “Resym Vertex Weights” """
bl_idname = "mesh.resym_save_map"
bl_label = "Resym save XML Map"
bl_options = {"REGISTER", "UNDO"}
@@ -271,6 +275,7 @@ class OscResymSave (Operator):
class OscResymMesh (Operator):
+ """Copies the symetrical position of the vertices on the X axys. It needs the XML map."""
bl_idname = "mesh.resym_mesh"
bl_label = "Resym save Apply XML"
bl_options = {"REGISTER", "UNDO"}
@@ -310,11 +315,11 @@ def DefOscObjectToMesh():
class OscObjectToMesh(Operator):
+ """It creates a copy of the final state of the object as it being see in the viewport."""
bl_idname = "mesh.object_to_mesh_osc"
bl_idname = "mesh.object_to_mesh_osc"
bl_label = "Object To Mesh"
bl_label = "Object To Mesh"
- bl_description = "Works on Meshes, Meta objects, Curves and Surfaces"
@classmethod
@@ -386,6 +391,7 @@ def DefOscOverlapUv(valpresicion):
class OscOverlapUv(Operator):
+ """Overlaps the uvs on one side of the model symmetry plane. Usefull to get more detail on fixed resolution bitmaps."""
bl_idname = "mesh.overlap_uv_faces"
bl_label = "Overlap Uvs"
bl_options = {"REGISTER", "UNDO"}
@@ -426,6 +432,7 @@ def dibuja_callback(self, context):
class ModalIndexOperator(Operator):
+ """Allow to visualize the index number for vertices in the viewport."""
bl_idname = "view3d.modal_operator"
bl_label = "Print Vertices"
@@ -491,6 +498,7 @@ def SelDoubles(self, context):
class SelectDoubles(Operator):
+ """Selects duplicated vertex without merge them."""
bl_idname = "mesh.select_doubles"
bl_label = "Select Doubles"
bl_options = {"REGISTER", "UNDO"}