From e5d8781f544326a59c7892da2adf35a5ba815c02 Mon Sep 17 00:00:00 2001 From: Patrick Huang Date: Mon, 11 Jul 2022 12:40:09 +0300 Subject: Fix T99335: Rigify horse has wrong parents. Set parent of eye and nose bones to head instead of left ear. Differential Revision: https://developer.blender.org/D15347 --- rigify/metarigs/Animals/horse.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'rigify') diff --git a/rigify/metarigs/Animals/horse.py b/rigify/metarigs/Animals/horse.py index cd393c5c..c9be9d54 100644 --- a/rigify/metarigs/Animals/horse.py +++ b/rigify/metarigs/Animals/horse.py @@ -618,28 +618,28 @@ def create(obj): bone.tail = 0.1990, -1.4668, 1.7420 bone.roll = 0.0000 bone.use_connect = False - bone.parent = arm.edit_bones[bones['ear.L']] + bone.parent = arm.edit_bones[bones['head']] bones['eye.L'] = bone.name bone = arm.edit_bones.new('nose.L') bone.head = 0.0450, -1.6240, 1.4228 bone.tail = 0.1039, -1.6613, 1.4269 bone.roll = 0.0000 bone.use_connect = False - bone.parent = arm.edit_bones[bones['ear.L']] + bone.parent = arm.edit_bones[bones['head']] bones['nose.L'] = bone.name bone = arm.edit_bones.new('eye.R') bone.head = -0.0988, -1.4596, 1.7351 bone.tail = -0.1990, -1.4668, 1.7420 bone.roll = -0.0000 bone.use_connect = False - bone.parent = arm.edit_bones[bones['ear.L']] + bone.parent = arm.edit_bones[bones['head']] bones['eye.R'] = bone.name bone = arm.edit_bones.new('nose.R') bone.head = -0.0450, -1.6240, 1.4228 bone.tail = -0.1039, -1.6613, 1.4269 bone.roll = -0.0000 bone.use_connect = False - bone.parent = arm.edit_bones[bones['ear.L']] + bone.parent = arm.edit_bones[bones['head']] bones['nose.R'] = bone.name bone = arm.edit_bones.new('ear.R.001') bone.head = -0.1056, -1.4118, 1.9537 -- cgit v1.2.3