Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-12-17 16:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-17 16:17:24 +0300
commit4cddc9e1468a3c329a6380450da6076b9cb06f3e (patch)
tree7a40624a84841c97a60ae23bf84524d55661651d /release/scripts/modules/rigify/arm_biped_generic.py
parent01dd4ea13ad75f4b9df04b56a3cc456d006d8390 (diff)
rescale metarig types to roughly match 1.0 == 1m for body parts, also fix py error with bone UI
Diffstat (limited to 'release/scripts/modules/rigify/arm_biped_generic.py')
-rw-r--r--release/scripts/modules/rigify/arm_biped_generic.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/release/scripts/modules/rigify/arm_biped_generic.py b/release/scripts/modules/rigify/arm_biped_generic.py
index dc45ccf8ae8..2363b5366e6 100644
--- a/release/scripts/modules/rigify/arm_biped_generic.py
+++ b/release/scripts/modules/rigify/arm_biped_generic.py
@@ -34,25 +34,25 @@ def metarig_template():
obj = bpy.context.active_object
arm = obj.data
bone = arm.edit_bones.new('shoulder')
- bone.head[:] = 0.0000, -0.4515, 0.0000
- bone.tail[:] = 1.0000, -0.0794, 0.3540
+ bone.head[:] = 0.0000, -0.0425, 0.0000
+ bone.tail[:] = 0.0942, -0.0075, 0.0333
bone.roll = -0.2227
bone.connected = False
bone = arm.edit_bones.new('upper_arm')
- bone.head[:] = 1.1319, -0.0808, -0.0101
- bone.tail[:] = 3.0319, 0.2191, -0.1101
+ bone.head[:] = 0.1066, -0.0076, -0.0010
+ bone.tail[:] = 0.2855, 0.0206, -0.0104
bone.roll = 1.6152
bone.connected = False
bone.parent = arm.edit_bones['shoulder']
bone = arm.edit_bones.new('forearm')
- bone.head[:] = 3.0319, 0.2191, -0.1101
- bone.tail[:] = 4.8319, -0.0809, -0.0242
+ bone.head[:] = 0.2855, 0.0206, -0.0104
+ bone.tail[:] = 0.4550, -0.0076, -0.0023
bone.roll = 1.5153
bone.connected = True
bone.parent = arm.edit_bones['upper_arm']
bone = arm.edit_bones.new('hand')
- bone.head[:] = 4.8319, -0.0809, -0.0242
- bone.tail[:] = 5.7590, -0.1553, -0.1392
+ bone.head[:] = 0.4550, -0.0076, -0.0023
+ bone.tail[:] = 0.5423, -0.0146, -0.0131
bone.roll = -3.0083
bone.connected = True
bone.parent = arm.edit_bones['forearm']