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>2018-10-19 19:13:31 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-19 19:13:31 +0300
commit1c75533d9cc0693733bacbadecfaac5c504313fb (patch)
tree865ca6cfc8f2ea136d7ff2462e435151e612d06d /rigify
parent4179941c58871bf85cf275130af0696affa5040f (diff)
parentd7d3233715503ecc15b8dd1973f7e73257e2cbda (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'rigify')
-rw-r--r--rigify/legacy/rigs/pitchipoy/limbs/limb_utils.py2
-rw-r--r--rigify/legacy/rigs/pitchipoy/limbs/super_limb.py2
-rw-r--r--rigify/legacy/rigs/pitchipoy/super_torso_turbo.py4
-rw-r--r--rigify/legacy/utils.py2
-rw-r--r--rigify/rigs/experimental/super_chain.py2
-rw-r--r--rigify/rigs/limbs/arm.py2
-rw-r--r--rigify/rigs/limbs/leg.py2
-rw-r--r--rigify/rigs/limbs/paw.py2
-rw-r--r--rigify/rigs/spines/super_spine.py4
-rw-r--r--rigify/rot_mode.py2
-rw-r--r--rigify/utils.py2
11 files changed, 13 insertions, 13 deletions
diff --git a/rigify/legacy/rigs/pitchipoy/limbs/limb_utils.py b/rigify/legacy/rigs/pitchipoy/limbs/limb_utils.py
index ce6a0761..b0b62d79 100644
--- a/rigify/legacy/rigs/pitchipoy/limbs/limb_utils.py
+++ b/rigify/legacy/rigs/pitchipoy/limbs/limb_utils.py
@@ -29,7 +29,7 @@ def make_constraint( cls, bone, constraint ):
constraint['target'] = cls.obj
- # filter contraint props to those that actually exist in the currnet
+ # filter constraint props to those that actually exist in the currnet
# type of constraint, then assign values to each
for p in [ k for k in constraint.keys() if k in dir(const) ]:
if p in dir( const ):
diff --git a/rigify/legacy/rigs/pitchipoy/limbs/super_limb.py b/rigify/legacy/rigs/pitchipoy/limbs/super_limb.py
index c6f5329f..11bac486 100644
--- a/rigify/legacy/rigs/pitchipoy/limbs/super_limb.py
+++ b/rigify/legacy/rigs/pitchipoy/limbs/super_limb.py
@@ -165,7 +165,7 @@ class Rig:
eb[ mch ].length /= 4
eb[ ctrl ].length /= 2
- # Contraints
+ # Constraints
if self.limb_type == 'paw':
for i,b in enumerate( tweaks['mch'] ):
diff --git a/rigify/legacy/rigs/pitchipoy/super_torso_turbo.py b/rigify/legacy/rigs/pitchipoy/super_torso_turbo.py
index a39d8471..38d5887b 100644
--- a/rigify/legacy/rigs/pitchipoy/super_torso_turbo.py
+++ b/rigify/legacy/rigs/pitchipoy/super_torso_turbo.py
@@ -408,7 +408,7 @@ class Rig:
const = owner_pb.constraints.new( constraint['constraint'] )
const.target = self.obj
- # filter contraint props to those that actually exist in the currnet
+ # filter constraint props to those that actually exist in the currnet
# type of constraint, then assign values to each
for p in [ k for k in constraint.keys() if k in dir(const) ]:
setattr( const, p, constraint[p] )
@@ -554,7 +554,7 @@ class Rig:
bpy.ops.object.mode_set(mode ='OBJECT')
pb = self.obj.pose.bones
- # deform bones bbone segements
+ # deform bones bbone segments
for bone in bones['def'][:-1]:
self.obj.data.bones[bone].bbone_segments = 8
diff --git a/rigify/legacy/utils.py b/rigify/legacy/utils.py
index cc2d6676..e3927ac3 100644
--- a/rigify/legacy/utils.py
+++ b/rigify/legacy/utils.py
@@ -749,7 +749,7 @@ def has_connected_children(bone):
def get_layers(layers):
- """ Does it's best to exctract a set of layers from any data thrown at it.
+ """ Does it's best to extract a set of layers from any data thrown at it.
"""
if type(layers) == int:
return [x == layers for x in range(0, 32)]
diff --git a/rigify/rigs/experimental/super_chain.py b/rigify/rigs/experimental/super_chain.py
index 836bc285..408bce3f 100644
--- a/rigify/rigs/experimental/super_chain.py
+++ b/rigify/rigs/experimental/super_chain.py
@@ -711,7 +711,7 @@ class Rig:
const = owner_pb.constraints.new(constraint['constraint'])
const.target = self.obj
- # filter contraint props to those that actually exist in the current
+ # filter constraint props to those that actually exist in the current
# type of constraint, then assign values to each
for p in [k for k in constraint.keys() if k in dir(const)]:
setattr(const, p, constraint[p])
diff --git a/rigify/rigs/limbs/arm.py b/rigify/rigs/limbs/arm.py
index fd1aa41f..f9174e92 100644
--- a/rigify/rigs/limbs/arm.py
+++ b/rigify/rigs/limbs/arm.py
@@ -218,7 +218,7 @@ class Rig:
eb[ mch ].length /= 4
eb[ ctrl ].length /= 2
- # Contraints
+ # Constraints
for i,b in enumerate( tweaks['mch'] ):
first = 0
diff --git a/rigify/rigs/limbs/leg.py b/rigify/rigs/limbs/leg.py
index ae705796..4f53fb89 100644
--- a/rigify/rigs/limbs/leg.py
+++ b/rigify/rigs/limbs/leg.py
@@ -245,7 +245,7 @@ class Rig:
eb[ mch ].length /= 4
eb[ ctrl ].length /= 2
- # Contraints
+ # Constraints
for i,b in enumerate( tweaks['mch'] ):
first = 0
diff --git a/rigify/rigs/limbs/paw.py b/rigify/rigs/limbs/paw.py
index 1f1d0a82..cb1438bf 100644
--- a/rigify/rigs/limbs/paw.py
+++ b/rigify/rigs/limbs/paw.py
@@ -232,7 +232,7 @@ class Rig:
eb[ mch ].length /= 4
eb[ ctrl ].length /= 2
- # Contraints
+ # Constraints
for i,b in enumerate( tweaks['mch'] ):
first = 0
diff --git a/rigify/rigs/spines/super_spine.py b/rigify/rigs/spines/super_spine.py
index ff891b49..115d0450 100644
--- a/rigify/rigs/spines/super_spine.py
+++ b/rigify/rigs/spines/super_spine.py
@@ -571,7 +571,7 @@ class Rig:
const = owner_pb.constraints.new(constraint['constraint'])
const.target = self.obj
- # filter contraint props to those that actually exist in the currnet
+ # filter constraint props to those that actually exist in the currnet
# type of constraint, then assign values to each
for p in [k for k in constraint.keys() if k in dir(const)]:
setattr(const, p, constraint[p])
@@ -806,7 +806,7 @@ class Rig:
bpy.ops.object.mode_set(mode='OBJECT')
pb = self.obj.pose.bones
- # deform bones bbone segements
+ # deform bones bbone segments
for bone in bones['def'][:-1]:
self.obj.data.bones[bone].bbone_segments = 8
diff --git a/rigify/rot_mode.py b/rigify/rot_mode.py
index d5e5a71e..f486db6b 100644
--- a/rigify/rot_mode.py
+++ b/rigify/rot_mode.py
@@ -10,7 +10,7 @@ This script/addon:
- Converts multiple Actions
TO-DO:
- - To convert object's rotation mode (alrady done in Mutant Bob script,
+ - To convert object's rotation mode (already done in Mutant Bob script,
but not done in this one.
- To understand "EnumProperty" and write it well.
- Code clean
diff --git a/rigify/utils.py b/rigify/utils.py
index 51b432b9..0888f44e 100644
--- a/rigify/utils.py
+++ b/rigify/utils.py
@@ -959,7 +959,7 @@ def has_connected_children(bone):
def get_layers(layers):
- """ Does it's best to exctract a set of layers from any data thrown at it.
+ """ Does it's best to extract a set of layers from any data thrown at it.
"""
if type(layers) == int:
return [x == layers for x in range(0, 32)]