Skip to content

Commit

Permalink
Merge pull request #399 from sh-akira/bugfix/vrmblendshapeproxy
Browse files Browse the repository at this point in the history
Fix blendshape uppercase bug.
  • Loading branch information
hiroj authored May 18, 2020
2 parents d864ba6 + a14f4c5 commit 7f64a3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/VRM/UniVRM/Scripts/BlendShape/BlendShapeKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public struct BlendShapeKey : IEquatable<BlendShapeKey>, IComparable<BlendShapeK

public string Name
{
get { return m_name.ToUpper(); }
get { return m_name; }
}

public BlendShapePreset Preset;
Expand Down

0 comments on commit 7f64a3c

Please sign in to comment.