| 651 | } |
| 652 | |
| 653 | EditorExportPlatform::ExportNotifier::~ExportNotifier() { |
| 654 | Vector<Ref<EditorExportPlugin>> export_plugins = EditorExport::get_singleton()->get_export_plugins(); |
| 655 | for (int i = 0; i < export_plugins.size(); i++) { |
| 656 | if (GDVIRTUAL_IS_OVERRIDDEN_PTR(export_plugins[i], _export_end)) { |
| 657 | export_plugins.write[i]->_export_end_script(); |
| 658 | } else { |
| 659 | export_plugins.write[i]->_export_end(); |
| 660 | } |
| 661 | export_plugins.write[i]->_export_end_clear(); |
| 662 | export_plugins.write[i]->set_export_preset(Ref<EditorExportPlugin>()); |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | bool EditorExportPlatform::_export_customize_dictionary(Dictionary &dict, LocalVector<Ref<EditorExportPlugin>> &customize_resources_plugins) { |
| 667 | bool changed = false; |
nothing calls this directly
no test coverage detected