How would you guys go about making timers?
For instance, I have a lot of things that need to happen only a certain amount of time after an object is instantiated, and if and when it does happen, I would imagine that checking the time.time every frame is bad.
What I'm doing right now is (paraphrased)
So that will doWhatever after 3 seconds,...
How would you guys go about making timers?
For instance, I have a lot of things that need to happen only a certain amount of time after an object is instantiated, and if and when it does happen, I would imagine that checking the time.time every frame is bad.
What I'm doing right now is (paraphrased)
Code (CSharp):
How would you guys go about making timers?