[][src]Struct tiled_json_rs::TileLayer

pub struct TileLayer {
    pub chunks: Option<Vec<Chunk>>,
    pub data: Vec<u32>,
    pub height: u32,
    pub width: u32,
}

Fields

chunks: Option<Vec<Chunk>>

Array of chunks (optional, generally infinite maps)

data: Vec<u32>

Data consists of the global ID's of tiles making up this layer of the map

height: u32

Row count. Same as map height for fixed-size maps.

width: u32

Column count. Same as map width for fixed-size maps.

Methods

impl TileLayer[src]

pub fn tile_position_on_layer(&self, count: u32) -> Vec2<u32>[src]

Returns the tiles position in tile column/row. To get a pixel dimension multiply this by the tile dimensions

Trait Implementations

impl PartialEq<TileLayer> for TileLayer[src]

impl Clone for TileLayer[src]

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

Performs copy-assignment from source. Read more

impl Debug for TileLayer[src]

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

Auto Trait Implementations

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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