diff --git a/Assets/VRM/UniHumanoid/Scripts/Format/Bvh.cs b/Assets/VRM/UniHumanoid/Scripts/Format/Bvh.cs index b7f8e6480..6c39c3b8f 100644 --- a/Assets/VRM/UniHumanoid/Scripts/Format/Bvh.cs +++ b/Assets/VRM/UniHumanoid/Scripts/Format/Bvh.cs @@ -114,7 +114,7 @@ namespace UniHumanoid throw new BvhException("OFFSET is not found"); } - var offset = split.Skip(1).Where(x => !string.IsNullOrEmpty(x)).Select(x => float.Parse(x)).ToArray(); + var offset = split.Skip(1).Where(x => !string.IsNullOrEmpty(x)).Select(x => float.Parse(x, System.Globalization.CultureInfo.InvariantCulture)).ToArray(); return new Single3(offset[0], offset[1], offset[2]); } @@ -320,7 +320,7 @@ namespace UniHumanoid } for(int i=0; i