Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

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

SceneManager.GetSceneAt

public static method GetSceneAt(index: int): SceneManagement.Scene;

Parameters

index Index of the Scene to get. Index must be greater than or equal to 0 and less than SceneManager.sceneCount.

Returns

Scene A reference to the Scene at the index specified.

Description

Get the Scene at index in the SceneManager's list of loaded Scenes.

#pragma strict
import UnityEditor;
import UnityEditor.SceneManagement;
import UnityEngine.SceneManagement;
import UnityEngine;

public class Example { // adds a menu item which gives a brief summary of currently open Scenes @MenuItem("SceneExample/Scene Summary") public static function ListSceneNames() { var output: String = ""; if (SceneManager.sceneCount > 0) { for (var n: int = 0; n < SceneManager.sceneCount; ++n) { var scene: Scene = SceneManager.GetSceneAt(n); output += scene.name; output += scene.isLoaded ? " (Loaded, " : " (Not Loaded, "; output += scene.isDirty ? "Dirty, " : "Clean, "; output += scene.buildIndex >= 0 ? " in build)\n" : " NOT in build)\n"; } } else { output = "No open Scenes."; } EditorUtility.DisplayDialog("Scene Summary", output, "Ok"); } }

Did you find this page useful? Please give it a rating: