game_time 0.2.0

A library for handling time in games. Game_time provides methods to track frame time in games. It allows decoupling game time from wall time as well as tracking and setting frame rate.
1
2
3
4
5
6
//! Utilities for frame rate computation and management.
pub mod counter;
pub mod sample;

pub use self::counter::{FrameCounter, FrameCount};
pub use self::sample::{FrameRateSampler, RunningAverageSampler, LinearAverageSampler};