Fix periods for SMD again, this time on the right save method
This commit is contained in:
parent
d32f8bfb24
commit
ba43fa5633
@ -283,6 +283,9 @@ namespace Toolbox.Library.Animations
|
||||
|
||||
public static void Save(Animation anim, STSkeleton Skeleton, String Fname)
|
||||
{
|
||||
System.Globalization.CultureInfo customCulture = (System.Globalization.CultureInfo)System.Threading.Thread.CurrentThread.CurrentCulture.Clone();
|
||||
customCulture.NumberFormat.NumberDecimalSeparator = ".";
|
||||
|
||||
using (System.IO.StreamWriter file = new System.IO.StreamWriter(@Fname))
|
||||
{
|
||||
file.WriteLine("version 1");
|
||||
|
Loading…
Reference in New Issue
Block a user