static void SaveSessionAs()

robot_2Generated
code_blocksInput

Description

The SaveSessionAs method in the Editor.EditorScene class allows you to save the current editing session under a new name or location. This is useful for creating backups or versions of your work without overwriting the existing session file.

Usage

To use the SaveSessionAs method, you can invoke it directly since it is a static method. This method is also associated with a keyboard shortcut, CTRL+SHIFT+S, which can be used within the editor to quickly save the session as a new file.

Example

// Example of using SaveSessionAs
Editor.EditorScene.SaveSessionAs();

// This will prompt the user to choose a new location and name for the current session.