- Home /
How does DeltaTime handle game logic ?
I already understand deltatime but i just need some confirmation. Does DeltaTime run for each millisecond of game code until the next frame was drawn or it just take values from the frame it last drawn.
(last frame(the value) -> code -> next frame)
Answer by davidcox70 · Aug 16, 2020 at 05:02 PM
Time.deltaTime is the time it took to compute and display the last frame in seconds. It doesn't count up during an Update() cycle. It is a retrospective report of how long the last complete frame took to make. Does that answer your question?
Your answer
Follow this Question
Related Questions
Having trouble increasing the spawning speed of explosions 0 Answers
CountDown Timer Help (Seconds problem) 2 Answers
Multiply deltaTime to arrive at point2 in 1.5 sec ? 1 Answer
How to make this display milliseconds? 3 Answers
how to add time delay 1 Answer