“Carregar a unidade da cena” Respostas de código

cena de carga de unidade

using UnityEngine.SceneManagement;

//Put this in whenever you want to load a scene
SceneManager.LoadScene("Scene name");
Artyom Gabtraupov

cena de carga de unidade

using UnityEngine.SceneManagement;

int buildIndex = 0;
//Load the scene with a build index
SceneManager.LoadScene(buildIndex);
Elegant Echidna

Carregar a unidade da cena

using UnityEngine.SceneManagement


public class LoadScene : MonoBehavior
{
	public string sceneToLoad = "Level2";
    
    public void Start()
    {
    	SceneManager.LoadScene(sceneToLoad);
    }
}
Yawning Yak

Unidade de Loadscene

using UnityEngine;
using UnityEngine.SceneManagement;

public class Singleplayer : MonoBehaviour
{
    public void LoadNextLevel()
    {
    	//This will load the next scene in the buildIndex, e.g if in scene 3, go to scene 4
        SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex +1);
    }
}
Comfortable Capybara

unidade como carregar uma cena

SceneManager.LoadScene("scene_01");
RyanGar46

Carregar a unidade da cena

using UnityEngine.SceneManagement;

    void Start()
    {
        SceneManager.LoadScene(/*the Scene number*/);
    }
Sore Starling

Respostas semelhantes a “Carregar a unidade da cena”

Perguntas semelhantes a “Carregar a unidade da cena”

Mais respostas relacionadas para “Carregar a unidade da cena” em C#

Procure respostas de código populares por idioma

Procurar outros idiomas de código