diff --git a/Assets/VRM/Editor/Format/VRMEditorExporter.cs b/Assets/VRM/Editor/Format/VRMEditorExporter.cs index b8fdce6fb..ce0187b24 100644 --- a/Assets/VRM/Editor/Format/VRMEditorExporter.cs +++ b/Assets/VRM/Editor/Format/VRMEditorExporter.cs @@ -168,9 +168,9 @@ namespace VRM { // copy元 var animator = exportRoot.GetComponent(); - var beforeTransforms = exportRoot.GetComponentsInChildren(); + var beforeTransforms = exportRoot.GetComponentsInChildren(true); // copy先 - var afterTransforms = target.GetComponentsInChildren(); + var afterTransforms = target.GetComponentsInChildren(true); // copy先のhumanoidBoneのリストを得る var humanTransforms = CachedEnum.GetValues() .Where(x => x != HumanBodyBones.LastBone)