[][src]Struct ogmo3::level::Decal

pub struct Decal {
    pub x: f32,
    pub y: f32,
    pub scale_x: Option<f32>,
    pub scale_y: Option<f32>,
    pub rotation: Option<f32>,
    pub texture: String,
    pub values: HashMap<String, Value>,
}

A decal instance.

Fields

x: f32

The X position of the decal.

y: f32

The Y position of the decal.

scale_x: Option<f32>

The scale of the decal on the X axis. Will only be present if the decal template was defined as scalable.

scale_y: Option<f32>

The scale of the decal on the Y axis. Will only be present if the decal template was defined as scalable.

rotation: Option<f32>

The rotation of the decal. Will only be present if the decal template was defined as rotatable.

texture: String

The name of the decal's texture.

values: HashMap<String, Value>

Custom values associated with the decal.

Trait Implementations

impl Clone for Decal[src]

impl Debug for Decal[src]

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

impl Serialize for Decal[src]

Auto Trait Implementations

impl RefUnwindSafe for Decal

impl Send for Decal

impl Sync for Decal

impl Unpin for Decal

impl UnwindSafe for Decal

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.