[][src]Struct oxygengine_composite_renderer::map_asset_protocol::Map

pub struct Map {
    pub cols: usize,
    pub rows: usize,
    pub tile_width: usize,
    pub tile_height: usize,
    pub sprite_sheets: Vec<String>,
    pub tiles_mapping: HashMap<usize, (String, String)>,
    pub layers: Vec<Layer>,
}

Fields

cols: usizerows: usizetile_width: usizetile_height: usizesprite_sheets: Vec<String>tiles_mapping: HashMap<usize, (String, String)>layers: Vec<Layer>

Implementations

impl Map[src]

pub fn size(&self) -> (usize, usize)[src]

pub fn layer_by_name(&self, name: &str) -> Option<&Layer>[src]

pub fn build_render_commands_from_layer_by_name<'a>(
    &self,
    name: &str,
    chunk_offset: (usize, usize),
    chunk_size: Option<(usize, usize)>,
    assets: &AssetsDatabase
) -> Option<Vec<Command<'a>>>
[src]

pub fn build_render_commands_from_layer<'a>(
    &self,
    index: usize,
    chunk_offset: (usize, usize),
    chunk_size: Option<(usize, usize)>,
    assets: &AssetsDatabase
) -> Option<Vec<Command<'a>>>
[src]

Trait Implementations

impl Clone for Map[src]

impl Debug for Map[src]

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

impl Serialize for Map[src]

Auto Trait Implementations

impl RefUnwindSafe for Map

impl Send for Map

impl Sync for Map

impl Unpin for Map

impl UnwindSafe for Map

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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> Event for T where
    T: Send + Sync + 'static, 

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

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

impl<T> Resource for T where
    T: Any, 

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.

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