Struct tiled_parser::layer::Object [] [src]

pub struct Object {
    pub id: u32,
    pub name: String,
    pub _type: String,
    pub gid: Option<u32>,
    pub ellipse: Option<bool>,
    pub polygon: Option<Vec<PolyPoint>>,
    pub properties: HashMap<String, String>,
    pub rotation: f32,
    pub visible: bool,
    pub height: f32,
    pub width: f32,
    pub x: f32,
    pub y: f32,
}

Fields

Trait Implementations

impl Clone for Object
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Object
[src]

Formats the value using the given formatter.

impl Default for Object
[src]

Returns the "default value" for a type. Read more