diff options
author | Yuri Sizov <11782833+YuriSizov@users.noreply.github.com> | 2023-07-26 23:43:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 23:43:08 +0200 |
commit | 41a7f6b38047773386710d5e49b64b173a3198de (patch) | |
tree | 150da04d5125277e448e0f8b418554a6ec3514cc /editor/editor_interface.cpp | |
parent | 8367152723ebb96b1c799a9c6c9ac1d85178f80a (diff) | |
parent | 8ef2e3d76c17303eae61d4cd89e6ac972275fe43 (diff) | |
download | redot-engine-41a7f6b38047773386710d5e49b64b173a3198de.tar.gz |
Merge pull request #77537 from henriquelalves/feature/ei_save_all_scenes
Expose `save_all_scenes` method to EditorInterface
Diffstat (limited to 'editor/editor_interface.cpp')
-rw-r--r-- | editor/editor_interface.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/editor_interface.cpp b/editor/editor_interface.cpp index d0d695f2f8..8d63082f31 100644 --- a/editor/editor_interface.cpp +++ b/editor/editor_interface.cpp @@ -346,6 +346,10 @@ void EditorInterface::mark_scene_as_unsaved() { EditorUndoRedoManager::get_singleton()->set_history_as_unsaved(EditorNode::get_editor_data().get_current_edited_scene_history_id()); } +void EditorInterface::save_all_scenes() { + EditorNode::get_singleton()->save_all_scenes(); +} + // Scene playback. void EditorInterface::play_main_scene() { @@ -446,6 +450,7 @@ void EditorInterface::_bind_methods() { ClassDB::bind_method(D_METHOD("save_scene"), &EditorInterface::save_scene); ClassDB::bind_method(D_METHOD("save_scene_as", "path", "with_preview"), &EditorInterface::save_scene_as, DEFVAL(true)); + ClassDB::bind_method(D_METHOD("save_all_scenes"), &EditorInterface::save_all_scenes); ClassDB::bind_method(D_METHOD("mark_scene_as_unsaved"), &EditorInterface::mark_scene_as_unsaved); |