Skip to content

Commit

Permalink
Merge pull request #94802 from Hilderin/fix-autoload-node-cannot-be-a…
Browse files Browse the repository at this point in the history
…ccessed-plugin-start-up

Fix autoload node cannot be accessed by plugin on start-up
  • Loading branch information
akien-mga authored Aug 16, 2024
2 parents 803dfcc + 2d4e573 commit 96be44c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion editor/editor_autoload_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}
Expand Down

0 comments on commit 96be44c

Please sign in to comment.