Is it safe to set FPS rate to a constant?

Posted by Ozan on Game Development See other posts from Game Development or by Ozan
Published on 2012-03-18T19:53:46Z Indexed on 2012/03/19 2:17 UTC
Read the original article Hit count: 219

Filed under:

I learned from game class that in update function, every movements must be time dependent for the sake of linearity in movement.

We made a simple game. Every move like going left, right or jump is written time dependent.

But, in some other computers, our game is worked very differently. For example, our character jumps higher than it should be. I guess this is because each computer has different FPS rate according to its specification.

My question is that what should we do to make this game work in same way in every computer? Setting FPS rate to a constant is a solution?

© Game Development or respective owner

Related posts about movement