Answers for "how to open scene with script with unity"

C#
3

open scene unity

using UnityEngine.SceneManagement;

SceneManager.LoadScene(string sceneName);
//OR
SceneManager.LoadScene(int sceneBuildIndex);
Posted by: Guest on August-28-2021

Code answers related to "how to open scene with script with unity"

C# Answers by Framework

Browse Popular Code Answers by Language