Read Time:15 Second
👉 Description: In this Video You’ll Learn About the Scene Management. How you change scene on button click.
C# Script For Scene Management:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class SceneMnage : MonoBehaviour
{
public void SceneChange()
{
SceneManager.LoadScene("Scene2");
}
}
Average Rating