Skip to content

Time

Overview

Turbo provides two main APIs for dealing with time: tick which provides monotonic time and time::now which provides a unix timestamp.

In the context of game development and operating systems, "monotonic time" refers to a clock that always moves forward at a consistent rate, unaffected by system time adjustments or daylight saving time, ensuring accurate elapsed time measurements

API

tick

Returns the number of times the game loop has executed so far.

tick() -> u32

time::now

Returns a unix timestamp.

time::now() -> u32