Comment changer la scène chargée dans l'unité

using UnityEngine;
using UnityEngine.SceneManagement;//Add this library first

public class Example : MonoBehaviour
{
    void Start()
    {
	//Here you put exact name of scene you want to load instead of "Level_2"
        SceneManager.LoadScene("Level_2");
    }
}
Xixika