diff options
author | Henrique Alves <henriquelalves@gmail.com> | 2023-05-26 23:23:06 -0300 |
---|---|---|
committer | Henrique Lacreta Alves <henriquelalves@gmail.com> | 2023-07-19 18:05:15 +0300 |
commit | 8ef2e3d76c17303eae61d4cd89e6ac972275fe43 (patch) | |
tree | a68adb78748f177603a2b1c7e89e5fccf0ddb046 /editor/editor_interface.cpp | |
parent | 0c2144da908a8223e188d27ed1d31d8248056c78 (diff) | |
download | redot-engine-8ef2e3d76c17303eae61d4cd89e6ac972275fe43.tar.gz |
Add `save_all_scenes` method to Editor Interface
Update documentation
(squash) fix docs
(squash) Improve docs
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 d9d9dc01c0..6b5f8e27ac 100644 --- a/editor/editor_interface.cpp +++ b/editor/editor_interface.cpp @@ -337,6 +337,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() { @@ -434,6 +438,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); |