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 '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 ###