Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

SceneManager.GetSceneByName

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function GetSceneByName(name: string): SceneManagement.Scene;
public static SceneManagement.Scene GetSceneByName(string name);

Parámetros

name Name of scene to find.

Valor de retorno

Scene The scene if found or an invalid scene if not.

Descripción

Searches through the scenes added to the SceneManager for a scene with the given name.

The name has to be without the .unity extension. The name can be the last part of the name as displayed in the BuildSettings window in which case the first scene that matches will be returned. The name could also the be path as displayed in the Build Settings, still without the extension, in which case only the exact match will be returned. This is case insensitive.