We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31a75c7 commit fce62f3Copy full SHA for fce62f3
Assets/FbxExporters/Editor/FbxExporter.cs
@@ -981,12 +981,8 @@ public int ExportAll (IEnumerable<UnityEngine.Object> unityExportSet)
981
982
// Initialize the exporter.
983
// fileFormat must be binary if we are embedding textures
984
- int fileFormat;
985
- if (EditorTools.ExportSettings.instance.ExportInBinary)
986
- {
987
- fileFormat = -1;
988
- }
989
- else
+ int fileFormat = -1;
+ if (!EditorTools.ExportSettings.instance.ExportInBinary)
990
{
991
fileFormat = fbxManager.GetIOPluginRegistry().FindWriterIDByDescription("FBX ascii (*.fbx)");
992
}
0 commit comments