diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-08-16 14:52:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-16 14:52:42 +0200 |
commit | 96be44c0ec4bafcb08d78be1a584b751b424db9f (patch) | |
tree | 8eeec2382b46ba0e15d857d427bc36c2b88f73da | |
parent | 803dfcc3cb3427415bf6d6d2ac6f947c9af8b889 (diff) | |
parent | 2d4e573b20284409110cf63a81587adb76288753 (diff) | |
download | redot-engine-96be44c0ec4bafcb08d78be1a584b751b424db9f.tar.gz |
Merge pull request #94802 from Hilderin/fix-autoload-node-cannot-be-accessed-plugin-start-up
Fix autoload node cannot be accessed by plugin on start-up
-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); } } } |