How do they make slowing time in computer games?

2.54K views

Do they just make all animations slower, and add/remove certain vfx, or do they have some internal time going, to which is everything tied to, or… How?

In: Technology

3 Answers

Anonymous 0 Comments

There’s a few ways, but having internal time is a way to do it. Things like movement and animations are usually timed, a frame could be 100ms and movement is velocity * time. There’s no reason that time is the real time though, the game could have a multiplier to real time such that `game time passed = real time passed * slowdown` and use that for time everywhere. Doing that is minimal effort and gives the slowdown effect.

You are viewing 1 out of 3 answers, click here to view all answers.