[][src]Struct carambolage::util::framelimiter::FrameLimiter

pub struct FrameLimiter {
    time_per_frame: Duration,
    delta_time: Duration,
    dt: f32,
    time: PreciseTime,
}

Limits the FPS to chosen value.

This is just a utility, that's why you have to limit the frame rate externally.

Example

let frame_limiter = FrameLimiter::new(60);
// GameLoop {
    // Warning: delta_time will be one millisecond on first start().
    let delta_time = frame_limiter.start();
    // Game stuff
    frame_limiter.stop();
    assert!(false);
// }

Fields

Methods

impl FrameLimiter
[src]

Create a new FrameLimiter.

Set the frame_rate as u32.

Make this the very first function call of your game loop, so all calculations add to delta time. This function returns the delta time.

Make this the very last function call of your game loop.

Auto Trait Implementations

impl Send for FrameLimiter

impl Sync for FrameLimiter

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> SetParameter for T

Sets value as a parameter of self.

impl<T> Same for T

Should always be Self

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

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.