30-11-2010, 07:09 PM
Questo è un semplice script per un timer! L'ho fatto io Me l'aveva chiesto un utente sul mio forum...
Se vi servirà usatelo xD
Se vi servirà usatelo xD
Codice:
/*------------------Script by KillerZ :D -----------------*/
var passedTime : int = 0;
var startFunction : boolean = false;
var activate : boolean = false;
function Start()
{
activate = true;
startFunction = true;
}
function Update()
{
if(startFunction)
{
startFunction = false;
CalcTime();
}
}
function OnGUI()
{
GUILayout.Label(passedTime.ToString());
if(GUILayout.Button("Stop Timer") && activate)
{
activate = false;
}
if(GUILayout.Button("Start Timer") && !activate)
{
startFunction = true;
activate = true;
}
if(GUILayout.Button("Restart Timer"))
{
passedTime = 0;
}
}
function CalcTime()
{
while(activate)
{
passedTime += 1;
yield WaitForSeconds(1);
}
}