Answers for "how to move from one scene to another in unity using button"

C#
2

move to another scene unity

using UnityEngine.SceneManagement;
void Start(){
SceneManager.LoadScene(0/* the scene number*/);
}
Posted by: Guest on January-27-2021

Code answers related to "how to move from one scene to another in unity using button"

C# Answers by Framework

Browse Popular Code Answers by Language