BlendShapeKey.ToString() が古い仕様のまま(ToUpper() する仕様)だったので削除

This commit is contained in:
f-maeda
2020-08-06 11:09:20 +09:00
parent 57ab3f5420
commit c065863d39

View File

@@ -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)