Change Chest.Up to UpperChest

This commit is contained in:
Yusarina
2025-08-03 20:08:38 +01:00
parent b39e20e647
commit d820edfc64
+9 -9
View File
@@ -452,7 +452,7 @@ standard_bones = {
'hips': 'Hips', 'hips': 'Hips',
'spine': 'Spine', 'spine': 'Spine',
'chest': 'Chest', 'chest': 'Chest',
'upper_chest': 'Chest.Up', 'upper_chest': 'UpperChest',
'neck': 'Neck', 'neck': 'Neck',
'head': 'Head', 'head': 'Head',
@@ -526,20 +526,20 @@ standard_bones = {
bone_hierarchy = [ bone_hierarchy = [
('Hips', 'Spine'), ('Hips', 'Spine'),
('Spine', 'Chest'), ('Spine', 'Chest'),
('Chest', 'Chest.Up'), ('Chest', 'UpperChest'),
('Chest.Up', 'Neck'), ('UpperChest', 'Neck'),
('Neck', 'Head'), ('Neck', 'Head'),
('Head', 'Eye_L'), ('Head', 'Eye_L'),
('Head', 'Eye_R'), ('Head', 'Eye_R'),
# Left Arm Chain # Left Arm Chain
('Chest.Up', 'Shoulder_L'), ('UpperChest', 'Shoulder_L'),
('Shoulder_L', 'UpperArm_L'), ('Shoulder_L', 'UpperArm_L'),
('UpperArm_L', 'LowerArm_L'), ('UpperArm_L', 'LowerArm_L'),
('LowerArm_L', 'Hand_L'), ('LowerArm_L', 'Hand_L'),
# Right Arm Chain # Right Arm Chain
('Chest.Up', 'Shoulder_R'), ('UpperChest', 'Shoulder_R'),
('Shoulder_R', 'UpperArm_R'), ('Shoulder_R', 'UpperArm_R'),
('UpperArm_R', 'LowerArm_R'), ('UpperArm_R', 'LowerArm_R'),
('LowerArm_R', 'Hand_R'), ('LowerArm_R', 'Hand_R'),
@@ -616,10 +616,10 @@ acceptable_bone_hierarchy = [
('Head', 'RightEye'), ('Head', 'RightEye'),
# Old standard bone hierarchy patterns # Old standard bone hierarchy patterns
('Chest.Up', 'UpperArm.L'), ('UpperChest', 'UpperArm.L'),
('UpperArm.L', 'LowerArm.L'), ('UpperArm.L', 'LowerArm.L'),
('LowerArm.L', 'Hand.L'), ('LowerArm.L', 'Hand.L'),
('Chest.Up', 'UpperArm.R'), ('UpperChest', 'UpperArm.R'),
('UpperArm.R', 'LowerArm.R'), ('UpperArm.R', 'LowerArm.R'),
('LowerArm.R', 'Hand.R'), ('LowerArm.R', 'Hand.R'),
('Hips', 'UpperLeg.L'), ('Hips', 'UpperLeg.L'),
@@ -632,11 +632,11 @@ acceptable_bone_hierarchy = [
('Foot.R', 'Toes.R'), ('Foot.R', 'Toes.R'),
# New standard bone hierarchy patterns (with shoulders) # New standard bone hierarchy patterns (with shoulders)
('Chest.Up', 'Shoulder_L'), ('UpperChest', 'Shoulder_L'),
('Shoulder_L', 'UpperArm_L'), ('Shoulder_L', 'UpperArm_L'),
('UpperArm_L', 'LowerArm_L'), ('UpperArm_L', 'LowerArm_L'),
('LowerArm_L', 'Hand_L'), ('LowerArm_L', 'Hand_L'),
('Chest.Up', 'Shoulder_R'), ('UpperChest', 'Shoulder_R'),
('Shoulder_R', 'UpperArm_R'), ('Shoulder_R', 'UpperArm_R'),
('UpperArm_R', 'LowerArm_R'), ('UpperArm_R', 'LowerArm_R'),
('LowerArm_R', 'Hand_R'), ('LowerArm_R', 'Hand_R'),