Only customize resources during export if there are any export plugins in use

This commit is contained in:
David Snopek 2023-01-30 12:55:44 -06:00
parent 551f5191e5
commit 0461cc5ba2

View file

@ -785,10 +785,10 @@ String EditorExportPlatform::_export_customize(const String &p_path, LocalVector
break;
}
}
}
if (_export_customize_object(res.ptr(), customize_resources_plugins)) {
modified = true;
if (_export_customize_object(res.ptr(), customize_resources_plugins)) {
modified = true;
}
}
if (modified || p_force_save) {