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

Everything, every piece of constantly running code, is always present inside of a loop which does something (ticks) every set amount of time. If something does not need to define a method for calculation or for creating an object from a class or setting things up in a larger library (E.G OpenGL) it will always follow this law.

this amount of time between ticks, or the amount of ticks per second, can be changed. Though not all games use this exact technology, *every* game which renders things in frames-per-second atleast *emulates* this technique to the point where it is effectively doing something big every XYZ amount of time, or CPU cycles.

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