Legacy Documentation: Version 5.3
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

EditorSceneManager.SaveScene

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function SaveScene(scene: SceneManagement.Scene, dstScenePath: string = "", saveAsCopy: bool = false): bool;
public static bool SaveScene(SceneManagement.Scene scene, string dstScenePath = "", bool saveAsCopy = false);

Parameters

scene The Scene to be saved.
dstScenePath The file path to save the Scene to. If the path is not empty, the current open Scene will be overwritten, or if it as not yet been saved at all, a save dialog is shown.
saveAsCopy If set to true, the Scene will be saved without changing the current Scene and without clearing the unsaved changes marker.

Returns

bool True if the save succeeded, otherwise false.

Description

Save a Scene.