From a14f4c5a23e25d023146e8f930255d4534901839 Mon Sep 17 00:00:00 2001 From: sato-akira Date: Sun, 17 May 2020 03:44:05 +0900 Subject: [PATCH] FIx blendshape uppercase bug. --- 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 7a2f63a75..a03f9a1fe 100644 --- a/Assets/VRM/UniVRM/Scripts/BlendShape/BlendShapeKey.cs +++ b/Assets/VRM/UniVRM/Scripts/BlendShape/BlendShapeKey.cs @@ -22,7 +22,7 @@ namespace VRM public string Name { - get { return m_name.ToUpper(); } + get { return m_name; } } public BlendShapePreset Preset;