Fix DAE decimal seperators on different languages
This commit is contained in:
parent
69e45dcead
commit
134a21bab0
@ -46,6 +46,11 @@ namespace Toolbox.Library.Collada
|
|||||||
Indentation = 2,
|
Indentation = 2,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
System.Globalization.CultureInfo customCulture = (System.Globalization.CultureInfo)System.Threading.Thread.CurrentThread.CurrentCulture.Clone();
|
||||||
|
customCulture.NumberFormat.NumberDecimalSeparator = ".";
|
||||||
|
|
||||||
|
System.Threading.Thread.CurrentThread.CurrentCulture = customCulture;
|
||||||
|
|
||||||
WriteDAEHeader();
|
WriteDAEHeader();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -864,6 +869,10 @@ namespace Toolbox.Library.Collada
|
|||||||
Writer?.Close();
|
Writer?.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void WriteFloats(object[] values)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
private class ValueContainer<T> : IEquatable<ValueContainer<T>> where T : struct
|
private class ValueContainer<T> : IEquatable<ValueContainer<T>> where T : struct
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user