Hi!
Random Q:
When assigning a value to the bool timerFinished, why does Rick use parentheses? IE:
bool timerFinished = (Time.timeSinceLevelLoad >= levelTime);
From testing, it seems the above statement works just as well without parentheses. IE:
bool timerFinished = Time.timeSinceLevelLoad >= levelTime;
Just curious as to what Rick’s reasoning behind the parentheses was?
Many thanks.