From d964b862493b0051505fc56fda6fcdfefec24cbf Mon Sep 17 00:00:00 2001 From: Gromph <361560+Gromph@users.noreply.github.com> Date: Tue, 13 Apr 2021 21:16:36 -0700 Subject: [PATCH] Fix EditorExportPlugin _export_begin and _export_end functions not being called when exporting UWP in uwp's version of export.cpp create a ExportNotifier object so that EditorExportPlugin _export_begin and _export_end functions will be called as documentated. (cherry picked from commit 564ddcde7724310a8ac50e374633e57af1e945cf) --- platform/uwp/export/export.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/uwp/export/export.cpp b/platform/uwp/export/export.cpp index 8ee19f5df2..885b1ce53f 100644 --- a/platform/uwp/export/export.cpp +++ b/platform/uwp/export/export.cpp @@ -1186,6 +1186,7 @@ public: } virtual Error export_project(const Ref &p_preset, bool p_debug, const String &p_path, int p_flags = 0) { + ExportNotifier notifier(*this, p_preset, p_debug, p_path, p_flags); String src_appx;