So currently I am working with a redical, and I’m looking to make it so when the redical is over an object it starts to draw an out circle around it to indicate the amount of time you have to look at the object. Currently this is being displayed and happening with a timer, and I don’t do to much ui work so am I trying to find out how you would do something like this…
Currently I am doing the timer through the ui like so
//Draw Time
if (spied == true) {
GUI.Box (new Rect (Screen.width / 2, Screen.height / 2, 100, 50), (elapsedTime.ToString ()));
} else {
spied = false;
}