[][src]Struct ldtk::LayerDef

pub struct LayerDef {
    pub px_offset_x: i32,
    pub tile_pivot_x: f32,
    pub int_grid_values: Vec<IntGridValueDef>,
    pub auto_rule_groups: Vec<HashMap<String, Value>>,
    pub identifier: String,
    pub display_opacity: f32,
    pub px_offset_y: i32,
    pub tile_pivot_y: f32,
    pub grid_size: i32,
    pub __type: String,
    pub auto_source_layer_def_uid: Option<i32>,
    pub uid: i32,
    pub tileset_def_uid: Option<i32>,
    pub auto_tileset_def_uid: Option<i32>,
    pub layer_def_type: Option<Value>,
}

Fields

px_offset_x: i32

X offset of the layer, in pixels (IMPORTANT: this should be added to the LayerInstance optional offset)

tile_pivot_x: f32

If the tiles are smaller or larger than the layer grid, the pivot value will be used to position the tile relatively its grid cell.

int_grid_values: Vec<IntGridValueDef>

An array (using IntGrid value as array index, starting from 0) that defines extra optional info for each IntGrid value.

auto_rule_groups: Vec<HashMap<String, Value>>

Contains all the auto-layer rule definitions.

identifier: String

Unique String identifier

display_opacity: f32

Opacity of the layer (0 to 1.0)

px_offset_y: i32

Y offset of the layer, in pixels (IMPORTANT: this should be added to the LayerInstance optional offset)

tile_pivot_y: f32

If the tiles are smaller or larger than the layer grid, the pivot value will be used to position the tile relatively its grid cell.

grid_size: i32

Width and height of the grid in pixels

__type: String

Type of the layer (IntGrid, Entities, Tiles or AutoLayer)

auto_source_layer_def_uid: Option<i32>
uid: i32

Unique Int identifier

tileset_def_uid: Option<i32>

Reference to the Tileset UID being used by this Tile layer

auto_tileset_def_uid: Option<i32>

Reference to the Tileset UID being used by this auto-layer rules

layer_def_type: Option<Value>

Type of the layer as Haxe Enum Possible values: IntGrid, Entities, Tiles, AutoLayer

Trait Implementations

impl Clone for LayerDef[src]

impl Debug for LayerDef[src]

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

impl Serialize for LayerDef[src]

Auto Trait Implementations

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.