| 178 | } |
| 179 | |
| 180 | void EditorExport::remove_export_preset(int p_idx) { |
| 181 | export_presets.remove_at(p_idx); |
| 182 | save_presets(); |
| 183 | emit_presets_runnable_changed(); |
| 184 | } |
| 185 | |
| 186 | void EditorExport::add_export_plugin(const Ref<EditorExportPlugin> &p_plugin) { |
| 187 | if (!export_plugins.has(p_plugin)) { |
no test coverage detected