game_clock 1.1.1

Provides a clock for game (engines) that is simple to use and efficient.
Documentation
  • Coverage
  • 92.86%
    13 out of 14 items documented0 out of 12 items with examples
  • Size
  • Source code size: 20.74 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.56 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • AnneKitsune

Game Clock

Support an Open Source Developer! :hearts:
Become a patron

Read the documentation.

Features

  • Adds a simple clock for use in games and game engines.

Usage

Add the following to you Cargo.toml file:

game_clock = "*"

Use the clock like so:

use game_clock::Time;
use std::time::Duration;
fn main() {
    let mut time = Time::default();
    time.set_fixed_time(Duration::from_secs_f64(1.0 / 20.0));

    let step = 1.0 / 60.0;
    for _ in 0..60 {
        time.advance_frame(Duration::from_secs_f64(step));
        { } // ...Run game logic, rendering, etc...
        while time.step_fixed_update() { // runs 20 times in a frame.
            { } // Run fixed frame logic (ie. physics)
        }
    }
}

Maintainer Information

  • Maintainer: Jojolepro
  • Contact: jojolepro [at] jojolepro [dot] com
  • Website: jojolepro.com
  • Patreon: patreon