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
path: root/rigify
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-07-31 14:27:19 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-07-31 14:28:52 +0300
commit4e1cda9885a6ef508396a8f60c292350af8f3f3d (patch)
treee3051b0a0710fd83e241531426e263c6c8542f6c /rigify
parent2176c8f2aaac6eb1fb6d1e159100396f1c500f22 (diff)
Spelling fixes in comments and descriptions, patch by luzpaz
Differential Revision: https://developer.blender.org/D5240
Diffstat (limited to 'rigify')
-rw-r--r--rigify/__init__.py2
-rw-r--r--rigify/legacy/utils.py2
-rw-r--r--rigify/rig_ui_template.py2
-rw-r--r--rigify/utils/widgets.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/rigify/__init__.py b/rigify/__init__.py
index 4374116f..000100f4 100644
--- a/rigify/__init__.py
+++ b/rigify/__init__.py
@@ -143,7 +143,7 @@ class RigifyPreferences(AddonPreferences):
print('Reloading external metarigs...')
metarig_menu.get_external_metarigs(set_list)
- # Re-register rig paramaters
+ # Re-register rig parameters
register_rig_parameters()
legacy_mode: BoolProperty(
diff --git a/rigify/legacy/utils.py b/rigify/legacy/utils.py
index f74a7abf..6a92a961 100644
--- a/rigify/legacy/utils.py
+++ b/rigify/legacy/utils.py
@@ -354,7 +354,7 @@ def obj_to_bone(obj, rig, bone_name):
def create_circle_polygon(number_verts, axis, radius=1.0, head_tail=0.0):
""" Creates a basic circle around of an axis selected.
- number_verts: number of vertices of the poligon
+ number_verts: number of vertices of the polygon
axis: axis normal to the circle
radius: the radius of the circle
head_tail: where along the length of the bone the circle is (0.0=head, 1.0=tail)
diff --git a/rigify/rig_ui_template.py b/rigify/rig_ui_template.py
index 3fbcf996..6180ad03 100644
--- a/rigify/rig_ui_template.py
+++ b/rigify/rig_ui_template.py
@@ -526,7 +526,7 @@ def ik2fk_leg(obj, fk, ik):
else:
# Stretch
- if 'stretch_lenght' in footi.keys() and 'stretch_lenght' in thigh.keys():
+ if 'stretch_length' in footi.keys() and 'stretch_length' in thigh.keys():
# Kept for compat with legacy rigify Human
footi['stretch_length'] = thigh['stretch_length']
diff --git a/rigify/utils/widgets.py b/rigify/utils/widgets.py
index 8f1e3442..85b81cff 100644
--- a/rigify/utils/widgets.py
+++ b/rigify/utils/widgets.py
@@ -98,7 +98,7 @@ def create_widget(rig, bone_name, bone_transform_name=None):
def create_circle_polygon(number_verts, axis, radius=1.0, head_tail=0.0):
""" Creates a basic circle around of an axis selected.
- number_verts: number of vertices of the poligon
+ number_verts: number of vertices of the polygon
axis: axis normal to the circle
radius: the radius of the circle
head_tail: where along the length of the bone the circle is (0.0=head, 1.0=tail)