1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Merge pull request #72572 from Daylily-Zeleen/daylily-zeleen/override_export_end_in_Cpp

Provide ability to override `EditorExportPlugin::_export_end()` in C++
This commit is contained in:
Rémi Verschelde
2024-01-04 16:38:15 +01:00
3 changed files with 7 additions and 2 deletions

View File

@@ -291,6 +291,8 @@ void EditorExportPlugin::_export_file(const String &p_path, const String &p_type
void EditorExportPlugin::_export_begin(const HashSet<String> &p_features, bool p_debug, const String &p_path, int p_flags) {
}
void EditorExportPlugin::_export_end() {}
void EditorExportPlugin::skip() {
skipped = true;
}