“Zmień jedność sceny” Kod odpowiedzi

Scena ładowania jedności

using UnityEngine.SceneManagement;

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

Zmień jedność sceny

SceneManager.LoadScene("name of scene", LoadSceneMode.Single);
A guy using his dad's PC

Załaduj jedność sceny

using UnityEngine.SceneManagement


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

Zmień jedność sceny


void Die()
    {
        Destroy(gameObject);
        if (gameManager != null)
        {
            if (gameManager.GetEnemies - 1 == 0)
            {
                gameManager.Invoke("WinLevel", 1f);
            }
        }
    }

Cheerful Cow

Odpowiedzi podobne do “Zmień jedność sceny”

Pytania podobne do “Zmień jedność sceny”

Więcej pokrewnych odpowiedzi na “Zmień jedność sceny” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu