| 154 | } |
| 155 | |
| 156 | Ref<EditorExportPlatform> EditorExport::get_export_platform(int p_idx) { |
| 157 | ERR_FAIL_INDEX_V(p_idx, export_platforms.size(), Ref<EditorExportPlatform>()); |
| 158 | |
| 159 | return export_platforms[p_idx]; |
| 160 | } |
| 161 | |
| 162 | void EditorExport::add_export_preset(const Ref<EditorExportPreset> &p_preset, int p_at_pos) { |
| 163 | if (p_at_pos < 0) { |
no test coverage detected