KorokEngine / Korok

korok.io - golang game engine
zlib License
624 stars 65 forks source link

fps smoothing #14

Closed ntop001 closed 6 years ago

ntop001 commented 6 years ago

smoothed-dt = pre-dt 0.8 + dt0.2 , not a good algorithm. maybe I should calculate the mean value of the last few frames.