From 41f1817361edd59e8167041ae76c4fd1c85989b1 Mon Sep 17 00:00:00 2001 From: Olaf Haag <83961384+Olaf-Wolf3D@users.noreply.github.com> Date: Wed, 3 Jul 2024 15:49:32 +0200 Subject: [PATCH] fix(headwear): allow Armature instead of Headwear_Rig as skeleton names (#30) only allow "Armature" as headwear skeleton name, Headwear_Rig is deprecated --- schemas/joints.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/joints.schema.json b/schemas/joints.schema.json index 4313eec..73671e5 100644 --- a/schemas/joints.schema.json +++ b/schemas/joints.schema.json @@ -16,7 +16,7 @@ "description": "Headwear skeleton hierarchy.", "type": "object", "properties": { - "Spine": { "type": "string", "const": "Headwear_Rig" }, + "Spine": { "type": "string", "const": "Armature" }, "Neck": { "type": "string", "const": "Spine" }, "Head": { "type": "string", "const": "Neck" } },