“Unidad Siguiente escena” Código de respuesta

Unidad Siguiente escena

//For C# in unity
UnityEngine.SceneManagement;
....
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex + 1);
Mage

Unidad Siguiente escena



using UnityEngine.SceneManagement;

int currentSceneIndex = SceneManager.GetActiveScene().buildIndex; 
if(currentSceneIndex<SceneManager.sceneCount-1)
{
    SceneManager.LoadScene(currentSceneIndex + 1);
}


Old-fashioned Osprey

Respuestas similares a “Unidad Siguiente escena”

Preguntas similares a “Unidad Siguiente escena”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código