[][src]Struct amethyst_rendy::sprite::Sprite

pub struct Sprite {
    pub width: f32,
    pub height: f32,
    pub offsets: [f32; 2],
    pub tex_coords: TextureCoordinates,
}

Dimensions and texture coordinates of each sprite in a sprite sheet.

Fields

width: f32

Pixel width of the sprite

height: f32

Pixel height of the sprite

offsets: [f32; 2]

Number of pixels to shift the sprite to the left and down relative to the entity

tex_coords: TextureCoordinates

Texture coordinates of the sprite

Methods

impl Sprite[src]

pub fn from_pixel_values(
    image_w: u32,
    image_h: u32,
    sprite_w: u32,
    sprite_h: u32,
    pixel_left: u32,
    pixel_top: u32,
    offsets: [f32; 2],
    flip_horizontal: bool,
    flip_vertical: bool
) -> Sprite
[src]

Creates a Sprite from pixel values.

This function expects pixel coordinates -- starting from the top left of the image. X increases to the right, Y increases downwards. Texture coordinates are calculated from the pixel values.

Parameters

  • image_w: Width of the full sprite sheet.
  • image_h: Height of the full sprite sheet.
  • sprite_w: Width of the sprite.
  • sprite_h: Height of the sprite.
  • pixel_left: Pixel X coordinate of the left side of the sprite.
  • pixel_top: Pixel Y coordinate of the top of the sprite.
  • offsets: Number of pixels to shift the sprite to the left and down relative to the entity.

Trait Implementations

impl Clone for Sprite[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Sprite> for Sprite[src]

impl From<((f32, f32), [f32; 4])> for Sprite[src]

impl From<((f32, f32), [f32; 2], [f32; 4])> for Sprite[src]

impl Debug for Sprite[src]

impl Serialize for Sprite[src]

impl<'de> Deserialize<'de> for Sprite[src]

Auto Trait Implementations

impl Unpin for Sprite

impl Sync for Sprite

impl Send for Sprite

impl UnwindSafe for Sprite

impl RefUnwindSafe for Sprite

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

fn adapt_into(self) -> D[src]

Convert the source color to the destination color using the bradford method by default Read more

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> SetParameter for T[src]

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 
[src]

Sets value as a parameter of self.

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

impl<T> Erased for T[src]

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

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

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 
[src]

impl<T> Clone for T where
    T: Clone
[src]