From 0dad1d0c04fdf4ee04bbb81c56a6cc1a5e45873f Mon Sep 17 00:00:00 2001 From: Tommy Date: Thu, 29 Mar 2018 01:46:59 +0200 Subject: [PATCH] FBX Export: fix Texture_Alpha_soutce typo. --- code/FBXExporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/FBXExporter.cpp b/code/FBXExporter.cpp index e8846be08..4db9fc4d9 100644 --- a/code/FBXExporter.cpp +++ b/code/FBXExporter.cpp @@ -1521,7 +1521,7 @@ void FBXExporter::WriteObjects () tnode.AddChild("RelativeFilename", texture_path); tnode.AddChild("ModelUVTranslation", double(0.0), double(0.0)); tnode.AddChild("ModelUVScaling", double(1.0), double(1.0)); - tnode.AddChild("Texture_Alpha_Soutce", "None"); + tnode.AddChild("Texture_Alpha_Source", "None"); tnode.AddChild( "Cropping", int32_t(0), int32_t(0), int32_t(0), int32_t(0) );