Merge pull request #47879 from SilverCreekEntertainment/add-uwp-export-project-notifier

Fix EditorExportPlugin  _export_begin and _export_end  functions not being called when exporting UWP
This commit is contained in:
Rémi Verschelde 2021-04-20 20:07:45 +02:00 committed by GitHub
commit 1616055b3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1177,6 +1177,8 @@ public:
}
virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) override {
ExportNotifier notifier(*this, p_preset, p_debug, p_path, p_flags);
String src_appx;
EditorProgress ep("export", "Exporting for UWP", 7, true);