Why does one of my timers take longer to go down to 0?
Posted: Tue Oct 10, 2017 8:11 am
It could just be my computer, but to me Follow_Timer seems to count down a lot slower than timer:
Both timers are going down by 1*dt, which I think should be the same for both the timers, yet timer counts down faster than Follow Timer
Both are set to 100 for the test.
When I observe the rate timer counts down, in the code section above, it appears to do it a lot faster..
It might just be my computer
Code: Select all
love.graphics.print(Follow_Timer,0,0)
love.graphics.print(DirX,0,25)
love.graphics.print(DirY,0,50)
love.graphics.print(timer,150,0)
Both are set to 100 for the test.
When I observe the rate timer counts down, in the code section above, it appears to do it a lot faster..
It might just be my computer