diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-07-09 09:48:45 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-07-09 09:54:41 +0300 |
commit | c151c7dce0b3802ddf2caa2bb2d6a227d7326c3f (patch) | |
tree | 5491db0db686db2f2c934f9f5aeb17a97481d104 /main | |
parent | 82cedc83c9069125207c128f9a07ce3d82c317cc (diff) | |
download | redot-engine-c151c7dce0b3802ddf2caa2bb2d6a227d7326c3f.tar.gz |
[Editor] Unload addons when using `--import` or `--quit`.
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/main/main.cpp b/main/main.cpp index 060b3fe2f6..c43fc7078b 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -4176,7 +4176,13 @@ bool Main::iteration() { movie_writer->add_frame(); } +#ifdef TOOLS_ENABLED + bool quit_after_timeout = false; +#endif if ((quit_after > 0) && (Engine::get_singleton()->_process_frames >= quit_after)) { +#ifdef TOOLS_ENABLED + quit_after_timeout = true; +#endif exit = true; } @@ -4209,6 +4215,12 @@ bool Main::iteration() { } #endif +#ifdef TOOLS_ENABLED + if (exit && quit_after_timeout && EditorNode::get_singleton()) { + EditorNode::get_singleton()->unload_editor_addons(); + } +#endif + return exit; } |