when using this it says: Assets/Scripts/pause atm.js(1,5): UCE0001: ';' expected. Insert a semicolon at the end. also this works on mobile too right?
bool isPaused;
void Start ()
{
isPaused = false;
}
void OnGUI ()
{
if (!isPaused)
{
if (GUI.Button(Rect(10,10,50,50), "Pause"))
{
Time.timeScale = 0f;
isPaused = true;
}
}
if (isPaused)
{
if (GUI.Button(Rect(10,10,50,50), "Play"))
{
Time.timeScale = 1.0f;
isPaused = false;
}
}
}
↧