From 8379a35357e24ac38c4ffe4d7aaf12dff5cbf55f Mon Sep 17 00:00:00 2001 From: ousttrue Date: Thu, 13 Aug 2020 16:39:32 +0900 Subject: [PATCH] Warning --- Assets/VRM/UniVRM/Editor/SpringBone/VRMSpringBoneValidator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/VRM/UniVRM/Editor/SpringBone/VRMSpringBoneValidator.cs b/Assets/VRM/UniVRM/Editor/SpringBone/VRMSpringBoneValidator.cs index 1f7b58fb6..d4abef440 100644 --- a/Assets/VRM/UniVRM/Editor/SpringBone/VRMSpringBoneValidator.cs +++ b/Assets/VRM/UniVRM/Editor/SpringBone/VRMSpringBoneValidator.cs @@ -35,7 +35,7 @@ namespace VRM { // * GameObjectが複数回ルートとして指定されてる(SpringBoneが同じでも別でも) var list = string.Join(", ", kv.Value.Select(x => string.IsNullOrEmpty(x.m_comment) ? x.name : x.m_comment)); - yield return Validation.Error($"{kv.Key} found multiple. {list}"); + yield return Validation.Warning($"{kv.Key} found multiple. {list}"); } var rootInRootMap = new Dictionary>(); @@ -62,7 +62,7 @@ namespace VRM foreach (var rootList in rootInRootMap) { var list = string.Join(", ", rootList.Value.Select(x => x.name)); - yield return Validation.Error($"{rootList.Key} hierarchy contains other root: {list}"); + yield return Validation.Warning($"{rootList.Key} hierarchy contains other root: {list}"); } } }