From 98b7ef49afb76efa568583695f7b3e1ee8f6be38 Mon Sep 17 00:00:00 2001 From: KillzXGaming Date: Sun, 19 Jan 2020 12:31:36 -0500 Subject: [PATCH] Quick .anim fix to properly work in maya --- Switch_Toolbox_Library/FileFormats/Animation/ANIM.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Switch_Toolbox_Library/FileFormats/Animation/ANIM.cs b/Switch_Toolbox_Library/FileFormats/Animation/ANIM.cs index 3b42c3d9..59ffde0d 100644 --- a/Switch_Toolbox_Library/FileFormats/Animation/ANIM.cs +++ b/Switch_Toolbox_Library/FileFormats/Animation/ANIM.cs @@ -375,7 +375,7 @@ namespace Toolbox.Library.Animations break; } - file.WriteLine(" " + (key.Frame + 1) + " {0:N6} fixed fixed 1 1 0 0 1 0 1;", v); + file.WriteLine(" " + (key.Frame + 1) + " {0:N6} fixed fixed 1 1 0 0 1 0 1;".Replace(",","."), v); } file.WriteLine(" }");