mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Only customize resources during export if there are any export plugins in use
This commit is contained in:
parent
551f5191e5
commit
0461cc5ba2
1 changed files with 3 additions and 3 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue