Time for action – Flexing those GUI muscles
Let's take a trip down memory lane to the previous chapter, where we became OnGUI
ninjas. We'll use the GUI techniques we already know to display the two bars, and shrink the foreground bar as time runs out.
- In the
DoCountdown
function of theclockScript
, calculate the percentage of time elapsed by comparing thestartTime
and thetimeRemaining
values:function DoCountdown() { timeRemaining = startTime - Time.time; percent = timeRemaining/startTime * 100; if (timeRemaining < 0) { timeRemaining = 0; clockIsPaused = true; TimeIsUp(); } ShowTime(); }
- Store the initial width of the
clockFG
graphic in a variable calledclockFGMaxWidth
in theAwake
function:function Awake() { startTime = 120.0; clockFGMaxWidth ...
Get Unity 3.x Game Development by Example now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.