Struct tiled::Layer [] [src]

pub struct Layer {
    pub name: String,
    pub opacity: f32,
    pub visible: bool,
    pub tiles: Vec<Vec<u32>>,
    pub properties: Properties,
}

Fields

The tiles are arranged in rows. Each tile is a number which can be used to find which tileset it belongs to and can then be rendered.

Trait Implementations

impl Debug for Layer
[src]

Formats the value using the given formatter.

impl PartialEq for Layer
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.