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 18:59:58 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-19 19:12:29 +0300
commitd7d3233715503ecc15b8dd1973f7e73257e2cbda (patch)
treef9f9ab24b89fe574b3f972e45c8337bcd791a9b1 /object_skinify.py
parent84b817117328b3193533324846ec389b1f5fe5c4 (diff)
Spelling fixes in comments and descriptions, patch by luzpaz.
Differential Revision: https://developer.blender.org/D3746
Diffstat (limited to 'object_skinify.py')
-rw-r--r--object_skinify.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/object_skinify.py b/object_skinify.py
index 079a4202..730a82a7 100644
--- a/object_skinify.py
+++ b/object_skinify.py
@@ -362,7 +362,7 @@ def generate_edges(mesh, shape_object, bones, scale, connect_mesh=False, connect
# ignore shoulder
if 'shoulder' in b.name.lower() and connect_mesh is True:
continue
- # connect the upper arm directly with chest ommiting shoulders
+ # connect the upper arm directly with chest omitting shoulders
if 'shoulder' in b.parent.name.lower() and connect_mesh is True:
vert1 = b.head
vert2 = b.parent.parent.tail
@@ -553,7 +553,7 @@ def generate_mesh(shape_object, size, thickness=0.8, finger_thickness=0.25, sub_
def main(context):
"""
- This script will create a custome shape
+ This script will create a custom shape
"""
# ### Check if selection is OK ###