1
0
mirror of synced 2024-11-30 18:24:39 +01:00

Fix periods for SMD again, this time on the right save method

This commit is contained in:
KillzXGaming 2020-02-13 18:55:57 -05:00
parent d32f8bfb24
commit ba43fa5633

View File

@ -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");