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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-19 19:13:31 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-19 19:13:31 +0300
commit1c75533d9cc0693733bacbadecfaac5c504313fb (patch)
tree865ca6cfc8f2ea136d7ff2462e435151e612d06d /oscurart_tools
parent4179941c58871bf85cf275130af0696affa5040f (diff)
parentd7d3233715503ecc15b8dd1973f7e73257e2cbda (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'oscurart_tools')
-rw-r--r--oscurart_tools/oscurart_files.py2
-rw-r--r--oscurart_tools/oscurart_meshes.py8
-rw-r--r--oscurart_tools/oscurart_objects.py8
-rw-r--r--oscurart_tools/oscurart_render.py2
4 files changed, 10 insertions, 10 deletions
diff --git a/oscurart_tools/oscurart_files.py b/oscurart_tools/oscurart_files.py
index 57583e55..65c248eb 100644
--- a/oscurart_tools/oscurart_files.py
+++ b/oscurart_tools/oscurart_files.py
@@ -91,7 +91,7 @@ class replaceFilePath(Operator):
# ---------------------- SYNC MISSING GROUPS --------------------------
class reFreshMissingGroups(Operator):
- """Search on the libraries of the linked source and relink groups and link newones if there are. Usefull to use with the mesh cache tools"""
+ """Search on the libraries of the linked source and relink groups and link newones if there are. Useful to use with the mesh cache tools"""
bl_idname = "file.sync_missing_groups"
bl_label = "Sync Missing Groups"
bl_options = {"REGISTER", "UNDO"}
diff --git a/oscurart_tools/oscurart_meshes.py b/oscurart_tools/oscurart_meshes.py
index f317b1fc..61c6fa54 100644
--- a/oscurart_tools/oscurart_meshes.py
+++ b/oscurart_tools/oscurart_meshes.py
@@ -79,7 +79,7 @@ def defReconst(self, OFFSET):
class reConst(Operator):
- """Erase vertices bellow cero X position value and rebuilds the symmetry. """
+ """Erase vertices below cero X position value and rebuilds the symmetry. """
"""It also creates two uv channels, one symmetrical and one asymmetrical"""
bl_idname = "mesh.reconst_osc"
bl_label = "ReConst Mesh"
@@ -125,7 +125,7 @@ def side(self, nombre, offset):
class SelectMenor(Operator):
- """Selects the vetex with an N position value on the X axis"""
+ """Selects the vertex with an N position value on the X axis"""
bl_idname = "mesh.select_side_osc"
bl_label = "Select Side"
bl_options = {"REGISTER", "UNDO"}
@@ -157,7 +157,7 @@ class SelectMenor(Operator):
class rvg(Operator):
bl_idname = "mesh.resym_vertex_weights_osc"
bl_label = "Resym Vertex Weights"
- bl_description = ("Copies the symetrical weight value of the vertices on the X axys\n"
+ bl_description = ("Copies the symmetrical weight value of the vertices on the X axys\n"
"(It needs the XML map and the Active Object is not in Edit mode)")
bl_options = {"REGISTER", "UNDO"}
@@ -288,7 +288,7 @@ class OscResymSave(Operator):
class OscResymMesh(Operator):
- """Copies the symetrical position of the vertices on the X axys. It needs the XML map"""
+ """Copies the symmetrical 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"}
diff --git a/oscurart_tools/oscurart_objects.py b/oscurart_tools/oscurart_objects.py
index cae6c463..dd3d4624 100644
--- a/oscurart_tools/oscurart_objects.py
+++ b/oscurart_tools/oscurart_objects.py
@@ -91,7 +91,7 @@ class oscRemModifiers (Operator):
class oscApplyModifiers (Operator):
- """Applys all the modifiers in the selected objects.(This does not work in objects with shapekeys)"""
+ """Applies all the modifiers in the selected objects.(This does not work in objects with shapekeys)"""
bl_idname = "object.modifiers_apply_osc"
bl_label = "Apply modifiers"
bl_options = {"REGISTER", "UNDO"}
@@ -376,7 +376,7 @@ def DefRenderOnlyInCamera():
class RenderOnlyInCamera (Operator):
- """Create two different groups, one group contains the objetcs that are in the camera frame, """ \
+ """Create two different groups, one group contains the objects that are in the camera frame, """ \
"""those that camera can see, and then a second group that contains the object that the camera can`t see"""
bl_idname = "group.group_in_out_camera"
bl_label = "Make a group for objects in outer camera"
@@ -389,7 +389,7 @@ class RenderOnlyInCamera (Operator):
# ------------------------ DUPLICATE OBJECTS SYMMETRY ------------------------
-def duplicateSymmetrical(self, disconect):
+def duplicateSymmetrical(self, disconnect):
for objeto in bpy.context.selected_objects:
bpy.ops.object.select_all(action='DESELECT')
@@ -501,7 +501,7 @@ def duplicateSymmetrical(self, disconect):
0].targets[
0].transform_type = 'ROT_Z'
- if disconect is not True:
+ if disconnect is not True:
bpy.ops.object.make_single_user(obdata=True, object=True)
bpy.context.active_object.driver_remove("location")
bpy.context.active_object.driver_remove("rotation_euler")
diff --git a/oscurart_tools/oscurart_render.py b/oscurart_tools/oscurart_render.py
index 12858fa4..f6e083e9 100644
--- a/oscurart_tools/oscurart_render.py
+++ b/oscurart_tools/oscurart_render.py
@@ -404,7 +404,7 @@ while REPITE:
class oscPythonBatchMaker (Operator):
"""It creates a file as “Make Render Batch” but it requires Phyton installed and """ \
"""the respective environment variables set up. """ \
- """If the render crahses, the batch automatically erase the broken frame and writes it again. """ \
+ """If the render crashes, the batch automatically erase the broken frame and writes it again. """ \
"""Its not recommended if there is more than one machine rendering"""
bl_idname = "file.create_batch_python"
bl_label = "Make Batch Python"