From c065863d3982680bca73f78e6e361de2c1d77214 Mon Sep 17 00:00:00 2001 From: f-maeda Date: Thu, 6 Aug 2020 11:09:20 +0900 Subject: [PATCH] =?UTF-8?q?BlendShapeKey.ToString()=20=E3=81=8C=E5=8F=A4?= =?UTF-8?q?=E3=81=84=E4=BB=95=E6=A7=98=E3=81=AE=E3=81=BE=E3=81=BE=EF=BC=88?= =?UTF-8?q?ToUpper()=20=E3=81=99=E3=82=8B=E4=BB=95=E6=A7=98=EF=BC=89?= =?UTF-8?q?=E3=81=A0=E3=81=A3=E3=81=9F=E3=81=AE=E3=81=A7=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/VRM/UniVRM/Scripts/BlendShape/BlendShapeKey.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/VRM/UniVRM/Scripts/BlendShape/BlendShapeKey.cs b/Assets/VRM/UniVRM/Scripts/BlendShape/BlendShapeKey.cs index fa19b13e5..344904f21 100644 --- a/Assets/VRM/UniVRM/Scripts/BlendShape/BlendShapeKey.cs +++ b/Assets/VRM/UniVRM/Scripts/BlendShape/BlendShapeKey.cs @@ -103,7 +103,7 @@ namespace VRM public override string ToString() { - return m_id.Replace(UnknownPresetPrefix, "").ToUpper(); + return m_id.Replace(UnknownPresetPrefix, ""); } public bool Equals(BlendShapeKey other)