| 655 | } |
| 656 | |
| 657 | void EditorInterface::open_scene_from_path(const String &scene_path, bool p_set_inherited) { |
| 658 | if (EditorNode::get_singleton()->is_changing_scene()) { |
| 659 | return; |
| 660 | } |
| 661 | EditorNode::get_singleton()->load_scene(scene_path, false, p_set_inherited); |
| 662 | } |
| 663 | |
| 664 | void EditorInterface::reload_scene_from_path(const String &scene_path) { |
| 665 | if (EditorNode::get_singleton()->is_changing_scene()) { |
no test coverage detected