Hello, i am new in unity.
I am trying to change scene on button click, but its not evening writing log in console. What i am doing wrong?
if(GUI.Button(new Rect(Screen.width * 95 / 100, Screen.height * 15 / 100, 0, 0), "START", customStyle)){
Debug.Log('Start clicked');
menuMode = false;
gameMode = true;
Time.timeScale = 1;
Application.LoadLevel("Scene 1. Beginning");
}