| 549 | } |
| 550 | |
| 551 | String ProjectExportDialog::get_export_path() { |
| 552 | Ref<EditorExportPreset> current = get_current_preset(); |
| 553 | ERR_FAIL_COND_V(current.is_null(), String("")); |
| 554 | |
| 555 | return current->get_export_path(); |
| 556 | } |
| 557 | |
| 558 | Ref<EditorExportPreset> ProjectExportDialog::get_current_preset() const { |
| 559 | return EditorExport::get_singleton()->get_export_preset(presets->get_current()); |
no test coverage detected