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:
authorAlexander Gavrilov <angavrilov@gmail.com>2020-12-05 00:27:10 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2020-12-05 00:27:20 +0300
commit0871d330e9028820bf6059d804f09b66021122d7 (patch)
tree9153e2858333d56d09eed2df8a7532b4cb129a02 /rigify/rigs/limbs/super_finger.py
parent1a2a24bf4af96c6788eab79c257c32e19124ec26 (diff)
Rigify: a number of small fixes.
- Don't try to add an update callback to CollectionProperty. - Restore exact alignment of the super_finger master control to 1st bone. - Add an option to run a sub-object after all methods of the parent. - Fix wrong identifier in SideZ.from_parts.
Diffstat (limited to 'rigify/rigs/limbs/super_finger.py')
-rw-r--r--rigify/rigs/limbs/super_finger.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rigify/rigs/limbs/super_finger.py b/rigify/rigs/limbs/super_finger.py
index 5dd7e681..b50d54f9 100644
--- a/rigify/rigs/limbs/super_finger.py
+++ b/rigify/rigs/limbs/super_finger.py
@@ -63,7 +63,7 @@ class Rig(SimpleChainRig):
first_bone = self.get_bone(orgs[0])
last_bone = self.get_bone(orgs[-1])
- self.get_bone(name).tail += (last_bone.tail - first_bone.head) * 1.25
+ self.get_bone(name).length += (last_bone.tail - first_bone.head).length * 1.25
@stage.configure_bones
def configure_master_control(self):