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 d25b55e commit 6310a45Copy full SHA for 6310a45
Assets/FbxExporters/Editor/FbxExporter.cs
@@ -2813,7 +2813,7 @@ public int ExportAll (
2813
2814
Vector3 center = Vector3.zero;
2815
if(exportType == TransformExportType.Global){
2816
- center = ExportSettings.centerObjects? FindCenter(revisedExportSet) : Vector3.zero;
+ center = (ExportSettings.centerObjects && revisedExportSet.Count > 1)? FindCenter(revisedExportSet) : Vector3.zero;
2817
}
2818
2819
foreach (var unityGo in revisedExportSet) {
0 commit comments