MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / ~ExportNotifier

Method ~ExportNotifier

editor/export/editor_export_platform.cpp:653–664  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

651}
652
653EditorExportPlatform::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
666bool EditorExportPlatform::_export_customize_dictionary(Dictionary &dict, LocalVector<Ref<EditorExportPlugin>> &customize_resources_plugins) {
667 bool changed = false;

Callers

nothing calls this directly

Calls 6

get_export_pluginsMethod · 0.80
_export_end_scriptMethod · 0.80
_export_endMethod · 0.80
_export_end_clearMethod · 0.80
set_export_presetMethod · 0.80
sizeMethod · 0.65

Tested by

no test coverage detected