Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. Dismiss Notice

Countdown problem

Discussion in 'Scripting' started by IamArcangel, Jul 27, 2014.

  1. IamArcangel

    IamArcangel

    Joined:
    Jul 25, 2014
    Posts:
    5
    Hello, I have a little problem with my countdown script.

    My game has a countdown that if it reach 0, this will freeze the game and you have to Press R to reload the scene, it works but after it reload the scene, the scene is still frozen, Can anyone help me please?

    I know that Time.timeScale = 0; is causing the problem, It may be a little thing but Im noob scripting. Help me please.


    Code (JavaScript):
    1.   var timer: float = 300; // set duration time in seconds in the Inspector
    2.   var isFinishedLevel : boolean = false; // while this is false, timer counts down
    3.  
    4.   function Update()
    5.   {
    6.   if (!isFinishedLevel) // has the level been completed
    7.   {
    8.   timer -= Time.deltaTime; // I need timer which from a particular time goes to zero
    9.   }
    10.  
    11.   if (timer > 0)
    12.   {
    13.  
    14.   guiText.text = timer.ToString("F0");
    15.  
    16.   }
    17.   else
    18.   {
    19.   guiText.text = "Press R to restart"; // when it goes to the end-0,game ends (shows text: time over...)
    20.   Time.timeScale = 0;
    21.   if (Input.GetKeyDown("x")) // And then i can restart game: pressing restart.
    22.   {
    23.  
    24.   Application.LoadLevel ("as"); // reload the same level
    25.  
    26.   }
    27.   }
    28.   }
    29.  
     
  2. zDemonhunter99

    zDemonhunter99

    Joined:
    Apr 23, 2014
    Posts:
    478
    Try adding a Time.timeScale = 1; after Applcation.LoadLevel.
     
    IamArcangel likes this.
  3. IamArcangel

    IamArcangel

    Joined:
    Jul 25, 2014
    Posts:
    5
    Wonderfull, thanks!! works
     
  4. zDemonhunter99

    zDemonhunter99

    Joined:
    Apr 23, 2014
    Posts:
    478
    You're welcome. :)
     
    IamArcangel likes this.