Version: 2022.3
LanguageEnglish
  • C#

SceneManager.GetActiveScene

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

Submission failed

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

Close

Cancel

Declaration

public static SceneManagement.Scene GetActiveScene();

Returns

Scene The active Scene.

Description

Gets the currently active Scene.

The currently active Scene is the Scene which will be used as the destination for new GameObjects and the source of current lighting settings. Note that while a Scene is being loaded, new GameObjects created in the Awake() and OnEnable() lifetime callbacks will always be added to the scene being loaded instead of the active scene. Note the active Scene has no impact on what Scenes are rendered. Additional resources: Scene.

using UnityEngine;
using UnityEngine.SceneManagement;

public class GetActiveSceneExample : MonoBehaviour { void Start() { Scene scene = SceneManager.GetActiveScene(); Debug.Log("Active Scene is '" + scene.name + "'."); } }