Santi
3111305a83
Timer: Created a universal timer Colours: Improved Comments, cubes now randomly appear on start. When a cube is in a container it gets randomly teleported back
20 lines
419 B
C#
20 lines
419 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using TMPro;
|
|
|
|
public class Timer : MonoBehaviour
|
|
{
|
|
public float timeRemaining;
|
|
public TextMeshProUGUI timeText;
|
|
|
|
//* Universal code for timers
|
|
void Update()
|
|
{
|
|
if (timeRemaining > 0)
|
|
{
|
|
timeRemaining -= Time.deltaTime;
|
|
timeText.text = timeRemaining.ToString("F0");
|
|
}
|
|
}
|
|
} |