Merge pull request #399 from sh-akira/bugfix/vrmblendshapeproxy

Fix blendshape uppercase bug.
This commit is contained in:
hiroj
2020-05-18 21:11:26 +09:00
committed by GitHub

View File

@@ -22,7 +22,7 @@ namespace VRM
public string Name
{
get { return m_name.ToUpper(); }
get { return m_name; }
}
public BlendShapePreset Preset;