| 651 | } |
| 652 | |
| 653 | void EditorInterface::edit_script(const Ref<Script> &p_script, int p_line, int p_col, bool p_grab_focus) { |
| 654 | ScriptEditor::get_singleton()->edit(p_script, p_line - 1, p_col - 1, p_grab_focus); |
| 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()) { |