Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


loadedSceneCount

The number of loaded Scenes.
Read time 1 minuteLast updated 13 days ago

Definition

public static int loadedSceneCount { get; }

Remarks

Returns the current number of loaded Scenes. This doesn't include the Scenes that are currently loading or unloading. For the total number of Scenes see SceneManager.sceneCount.

Examples

using UnityEngine;using UnityEngine.SceneManagement;using UnityEditor;public class Example{ // adds a custom menu item which displays the number of open Scenes in a Dialogue Box [MenuItem("SceneExample/Number Of Scenes")] public static void NumberOfScenes() { EditorUtility.DisplayDialog("Number of loaded Scenes:", SceneManager.loadedSceneCount.ToString(), "OK"); }}