diff --git a/Source/PythonConsole/Private/PyFbxFactory.cpp b/Source/PythonConsole/Private/PyFbxFactory.cpp index 2b2da1d25..d362f664b 100644 --- a/Source/PythonConsole/Private/PyFbxFactory.cpp +++ b/Source/PythonConsole/Private/PyFbxFactory.cpp @@ -28,6 +28,8 @@ UObject * UPyFbxFactory::FactoryCreateFile(UClass* InClass, UObject* InParent, F { #if ENGINE_MINOR_VERSION >= 20 FbxMeshUtils::SetImportOption(ImportUI); + // ensure auto-detect is skipped + bDetectImportTypeOnImport = false; #endif return Super::FactoryCreateFile(InClass, InParent, InName, Flags, Filename, Parms, Warn, bOutOperationCanceled); }