Description
The SaveAllSessions
method is a static method of the Editor.EditorScene
class. It is used to save all currently open sessions in the editor. This method ensures that any changes made across multiple sessions are preserved by saving them to their respective files.
Usage
To use the SaveAllSessions
method, simply call it without any parameters. This method is bound to the keyboard shortcut CTRL+ALT+SHIFT+S
, allowing for quick access during editing sessions.
Example
// Save all open sessions in the editor
Editor.EditorScene.SaveAllSessions();