Skip to content

Commit

Permalink
Merge pull request #90136 from KoBeWi/re-add_root_node
Browse files Browse the repository at this point in the history
Fix `add_root_node()` being no-op
  • Loading branch information
akien-mga committed Jun 21, 2024
2 parents 019a0c1 + 98871c3 commit 4226dbf
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
5 changes: 2 additions & 3 deletions doc/classes/EditorScript.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@
<return type="void" />
<param index="0" name="node" type="Node" />
<description>
Adds [param node] as a child of the root node in the editor context.
[b]Warning:[/b] The implementation of this method is currently disabled.
Makes [param node] root of the currently opened scene. Only works if the scene is empty. If the [param node] is a scene instance, an inheriting scene will be created.
</description>
</method>
<method name="get_editor_interface" qualifiers="const" deprecated="[EditorInterface] is a global singleton and can be accessed directly by its name.">
Expand All @@ -57,7 +56,7 @@
<method name="get_scene" qualifiers="const">
<return type="Node" />
<description>
Returns the Editor's currently active scene.
Returns the edited (current) scene's root [Node]. Equivalent of [method EditorInterface.get_edited_scene_root].
</description>
</method>
</methods>
Expand Down
20 changes: 18 additions & 2 deletions editor/editor_script.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@

#include "editor/editor_interface.h"
#include "editor/editor_node.h"
#include "editor/editor_undo_redo_manager.h"
#include "editor/gui/editor_scene_tabs.h"
#include "scene/main/node.h"
#include "scene/resources/packed_scene.h"

void EditorScript::add_root_node(Node *p_node) {
if (!EditorNode::get_singleton()) {
Expand All @@ -41,11 +44,24 @@ void EditorScript::add_root_node(Node *p_node) {
}

if (EditorNode::get_singleton()->get_edited_scene()) {
EditorNode::add_io_error("EditorScript::add_root_node: " + TTR("There is an edited scene already."));
EditorNode::add_io_error("EditorScript::add_root_node: " + TTR("The current scene already has a root node."));
return;
}

//editor->set_edited_scene(p_node);
const String &scene_path = p_node->get_scene_file_path();
if (!scene_path.is_empty()) {
Ref<PackedScene> scene = ResourceLoader::load(scene_path);
if (scene.is_valid()) {
memfree(scene->instantiate(PackedScene::GEN_EDIT_STATE_INSTANCE)); // Ensure node cache.

p_node->set_scene_inherited_state(scene->get_state());
p_node->set_scene_file_path(String());
}
}

EditorNode::get_singleton()->set_edited_scene(p_node);
EditorUndoRedoManager::get_singleton()->set_history_as_unsaved(EditorNode::get_editor_data().get_current_edited_scene_history_id());
EditorSceneTabs::get_singleton()->update_scene_tabs();
}

Node *EditorScript::get_scene() const {
Expand Down

0 comments on commit 4226dbf

Please sign in to comment.