if(Input.GetKeyDown(KeyCode.R))
Application.LoadLevel(“SceneTitle”); }
well it’s missing an opening curly brace and should look like
if (Input.GetKeyDown(KeyCode.R))
{ // <-- missing curly brace
Application.LoadLevel("SceneTitle");
}
if(Input.GetKeyDown(KeyCode.R))
Application.LoadLevel(“SceneTitle”); }
well it’s missing an opening curly brace and should look like
if (Input.GetKeyDown(KeyCode.R))
{ // <-- missing curly brace
Application.LoadLevel("SceneTitle");
}