GravityGamezProd
HERES THE FIXZ TO ALL WHO IS STILL LOOKING AT THIS COUNTDOWN SCRIPT ON UNITY 5
*TODAYS DATE 12/9/17
YOUR WELCOME
also if u want me to send u a MORE ADVANCE TIMER with cool UI Image/background/sprite (etc) like the one i use in my NEWLY Released game Shoot It 2
you can check it Out here Click Link below
https: //htbad.itch.io/
also Our team is working on one of the best Dragon breeding Mulitplayer action Adventure game with roleplaying chat to ever walk this UNIVERSE PLZ DONT BE SHY TO MAKE A SMALL DONATION TO OUR DRAGON GAME PAGE THROUGH PAYPAL THANK YOU AND BY DOING SO YOULL GET OUR SUPPORT LINE EMAIL ....WILL BE GLAD TO HELP WITH ANY SCRIPT YOU NEED FIXZ OR NEED THAT WE HAVE AND WE HAVE A SCRIPT FOR JUST ABOUT EVERYTHING U CAN POSSIBLY NEED FOR YOUR GAME 2D/3D* https://htbad.itch.io/
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class CountDown : MonoBehaviour
{
public float timeLeft = 300.0f;
Text text;
void Awake ()
{
text = GetComponent ();
}
void Update()
{
timeLeft -= Time.deltaTime;
text.text = "time Left:" + timeLeft;
if(timeLeft < 0)
{
Application.LoadLevel("gameOver");
}
}
}
↧