I’m trying to add script to my start text button that whenever i click on the start it moves to another scene which I created named Game but it won’t work. Here’s my code. Feel free to comment if there’s something lacking in my code. Thanks!
using System.Collections;
using UnityEngine;
using UnityEngine.SceneManagement;
public class LevelManager : MonoBehaviour
{
public void LoadLevel (string name)
{
Debug.Log (“Level load requested for :” + name);
}
}