[][src]Struct nuuro::renderer::SpriteRenderer

pub struct SpriteRenderer<'a, A: AppAssetId + 'a> { /* fields omitted */ }

A rendering mode for sprites.

Methods

impl<'a, A: AppAssetId + 'a> SpriteRenderer<'a, A>[src]

pub fn draw(&mut self, affine: &Affine, sprite: A::Sprite)[src]

Draws the given sprite using the given affine transformation from the origin.

pub fn draw_flash(
    &mut self,
    affine: &Affine,
    sprite: A::Sprite,
    flash_ratio: f64
)
[src]

Draws the given sprite blended with the color white using the given affine transformation from the origin.

flash_ratio, capped between 0.0 and 1.0, controls how much blending occurs with the color white (0.0 means use the image unaltered, 1.0 means use white completely).

Auto Trait Implementations

impl<'a, A> !RefUnwindSafe for SpriteRenderer<'a, A>

impl<'a, A> !Send for SpriteRenderer<'a, A>

impl<'a, A> !Sync for SpriteRenderer<'a, A>

impl<'a, A> Unpin for SpriteRenderer<'a, A>

impl<'a, A> !UnwindSafe for SpriteRenderer<'a, A>

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, 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.