[][src]Struct coffee::Timer

pub struct Timer { /* fields omitted */ }

The timer of your game state.

A Timer is updated once per frame, and it ticks Game::TICKS_PER_SECOND times every second. When the timer ticks, your game is updated.

Methods

impl Timer[src]

pub fn has_ticked(&self) -> bool[src]

Returns true if the Timer has ticked since its last update.

This tells you whether your game has been updated or not during a frame.

You can use this to avoid computations during Game::draw when your game has not been updated during a particular frame.

pub fn next_tick_proximity(&self) -> f32[src]

Returns how close the next tick is.

The returned value is in the [0.0, 1.0] interval. You should use this value in your Game::draw function to perform graphics interpolation. You can read more about it in this excellent article.

Trait Implementations

impl Debug for Timer[src]

Auto Trait Implementations

impl RefUnwindSafe for Timer

impl Send for Timer

impl Sync for Timer

impl Unpin for Timer

impl UnwindSafe for Timer

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,