Description
The SaveSession
method is a static method of the Editor.EditorScene
class. It is used to save the current state of the editor session. This method is particularly useful for ensuring that all changes made during the editing session are preserved and can be restored later.
Usage
To use the SaveSession
method, simply call it without any parameters. This method is bound to the keyboard shortcut CTRL+S
, allowing for quick access during editing sessions.
Example
// Save the current editor session
Editor.EditorScene.SaveSession();
// Alternatively, use the shortcut CTRL+S in the editor to trigger this method.