Quantcast
Channel: Questions in topic: "build-settings"
Viewing all articles
Browse latest Browse all 30

Timer Starts Too Early

$
0
0
Hi, I am still fairly new to unity and need help with a timer I have in my simple racing game. The Timer is just a UI Canvas that Displays 00:00 at the top of the screen, and has a script attached to it that counts up in seconds and minutes. The Problem is, I have 5 levels (Start Screen, Tutorial, Level 1, Level 2, and Level 30. Level 1 (where I want the timer to actually start counting, is build index number 2. Right now, the timer starts counting at build index 0, which is my Start Screen. meaning that if you sit at the starting screen for 5 minutes before clicking start, once you get into the game, you will already have a time of 5 minutes even though you just started playing. I will attach the code I used for my timer below. using UnityEngine; using System.Collections; using UnityEngine.UI; public class Timer : MonoBehaviour { public Text counterText; public float seconds, minutes; // Use this for initialization void Start () { counterText = GetComponent() as Text; } // Update is called once per frame void Update () { minutes = (int)(Time.time / 60f); seconds = (int)(Time.time % 60f); counterText.text = minutes.ToString("00") + ":" + seconds.ToString("00"); } } Sorry I know I'm not great at explaining things. But it comes down to this, right now the timer starts on build index 0, and counts continuously through each level after that. However I want the timer to start counting when the program reaches build index 2, which is the true Level 1 of the game. Thanks a lot!!!

Viewing all articles
Browse latest Browse all 30

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>