diff --git a/Exporters/ExportMaterial.cpp b/Exporters/ExportMaterial.cpp index 527d6a26..3a9f4d95 100644 --- a/Exporters/ExportMaterial.cpp +++ b/Exporters/ExportMaterial.cpp @@ -36,12 +36,6 @@ void ExportMaterial(const UUnrealMaterial* Mat) CMaterialParams Params; Mat->GetParams(Params); - if ((Params.IsNull() || Params.Diffuse == Mat) && AllTextures.Num() == 0) - { - // empty/unknown material, or material itself is a texture - appPrintf("Ignoring %s'%s' due to empty parameters\n", Mat->GetClassName(), Mat->Name); - return; - } FArchive* Ar = CreateExportArchive(Mat, EFileArchiveOptions::TextFile, "%s.mat", Mat->Name); if (!Ar) return;