mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-09-06 19:11:37 -05:00
Removed utf8bom
* https://github.com/dwango/UniVRM/pull/27 * https://msdn.microsoft.com/ja-jp/library/ms143375(v=vs.110).aspx * File.WriteAllText(path, str, Encoding.UTF8) is with BOM * File.WriteAllText(path, str) default encoding is without BOM
This commit is contained in:
@@ -56,7 +56,7 @@ namespace VRM
|
||||
spring.boneGroups.Add
|
||||
);
|
||||
|
||||
File.WriteAllText(path, spring.ToJson(), Encoding.UTF8);
|
||||
File.WriteAllText(path, spring.ToJson());
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user