- bone.basename now only gets the name before the first '.', since names like finger.01.L are common
- updated delta not to remove a bone - spine and neck rigs interpolation bones are now axis aligned to the control bone - palm tag is expected on the pointer finger rather then the wrist - operate on bone children first working up the chain (not essential but more pradictable)
This commit is contained in:
@@ -105,7 +105,7 @@ def metarig_definition(obj, orig_bone_name):
|
||||
children = bone.children
|
||||
# Now there must be 2 children, only one connected
|
||||
if len(children) != 2:
|
||||
raise Exception("expected the foot to have 2 children")
|
||||
raise Exception("expected the foot bone:'%s' to have 2 children" % bone.name )
|
||||
|
||||
if children[0].connected == children[1].connected:
|
||||
raise Exception("expected one bone to be connected")
|
||||
|
||||
Reference in New Issue
Block a user