diff options
author | Hilderin <81109165+Hilderin@users.noreply.github.com> | 2024-07-26 10:29:38 -0400 |
---|---|---|
committer | Hilderin <81109165+Hilderin@users.noreply.github.com> | 2024-07-26 10:29:38 -0400 |
commit | 2d4e573b20284409110cf63a81587adb76288753 (patch) | |
tree | ba0a2a2a7b55b2be385c8957245a94dbf58c1e82 /editor/editor_autoload_settings.cpp | |
parent | 607b230ffe120b2757c56bd3d52a7a0d4e502cfe (diff) | |
download | redot-engine-2d4e573b20284409110cf63a81587adb76288753.tar.gz |
Fix autoload node cannot be accessed by plugin on start-up
Diffstat (limited to 'editor/editor_autoload_settings.cpp')
-rw-r--r-- | editor/editor_autoload_settings.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/editor_autoload_settings.cpp b/editor/editor_autoload_settings.cpp index b62351256e..32b2133f23 100644 --- a/editor/editor_autoload_settings.cpp +++ b/editor/editor_autoload_settings.cpp @@ -457,7 +457,9 @@ void EditorAutoloadSettings::init_autoloads() { for (const AutoloadInfo &info : autoload_cache) { if (info.node && info.in_editor) { - callable_mp((Node *)get_tree()->get_root(), &Node::add_child).call_deferred(info.node, false, Node::INTERNAL_MODE_DISABLED); + // It's important to add the node without deferring because code in plugins or tool scripts + // could use the autoload node when they are enabled. + get_tree()->get_root()->add_child(info.node); } } } |