| 662 | } |
| 663 | |
| 664 | void EditorInterface::reload_scene_from_path(const String &scene_path) { |
| 665 | if (EditorNode::get_singleton()->is_changing_scene()) { |
| 666 | return; |
| 667 | } |
| 668 | |
| 669 | EditorNode::get_singleton()->reload_scene(scene_path); |
| 670 | } |
| 671 | |
| 672 | Node *EditorInterface::get_edited_scene_root() const { |
| 673 | return EditorNode::get_singleton()->get_edited_scene(); |
nothing calls this directly
no test coverage detected