Tagged Questions
2
votes
1answer
2k views
in iOS, does CADisplayLink automatically control the app's 'timestep'?
I'm writing an iOS game that uses OpenGL ES 2.0. I have my 'OpenGLView' which contains a
- (void)setupDisplayLink {
CADisplayLink* displayLink = [CADisplayLink displayLinkWithTarget:self ...
120
votes
8answers
23k views
Fixed time step vs Variable time step
What is better for games when developing game loops, fixed time steps or variable time steps? What type of games are better with one or the other?
Variable time steps:
With variable time step, I ...