Bindie wrote:Hey, I haven't implemented dt to every equation yet. If I think I got a perfect timing for example a laser timer, without dt as a factor, do I have to recalibrate that perfect timing when I implement dt?
Yes you have to. Once you put in dt everywhere, the game will run at a different speed. However, things that happen synchronous without dt will also do so with dt. So all you have to do is adapt the overall speed.
In most cases you will have 60 frames per second. So if you insert (60*dt) everywhere, then the overall game speed should stay about the same.
Bindie wrote:Hey, I haven't implemented dt to every equation yet. If I think I got a perfect timing for example a laser timer, without dt as a factor, do I have to recalibrate that perfect timing when I implement dt?
It might perfect in your computer, but without dt it will run faster or slower in others. Using dt is what makes it perfect everywhere.