The Main Menu is a scene, named “Main Menu”. I want to load the next scene, called “Game”. The Main Menu has 2 components: an image and the “Start” text. To the text, I attached this script:
public class Start_Script : MonoBehaviour {
void OnMouseEnter()
{
Application.LoadLevel ("Game");
}
}
But when I click it, it doesn’t work. How to solve it?