pub struct TileInstance {
pub a: f64,
pub d: Vec<i64>,
pub f: i64,
pub px: Vec<i64>,
pub src: Vec<i64>,
pub t: i64,
}
Expand description
This structure represents a single tile from a given Tileset.
Fields§
§a: f64
Alpha/opacity of the tile (0-1, defaults to 1)
d: Vec<i64>
Internal data used by the editor.
For auto-layer tiles: [ruleId, coordId]
.
For tile-layer tiles: [coordId]
.
f: i64
“Flip bits”, a 2-bits integer to represent the mirror transformations of the tile.
- Bit 0 = X flip
- Bit 1 = Y flip
Examples: f=0 (no flip), f=1 (X flip only), f=2 (Y flip only), f=3 (both flips)
px: Vec<i64>
Pixel coordinates of the tile in the layer ([x,y]
format). Don’t forget optional
layer offsets, if they exist!
src: Vec<i64>
Pixel coordinates of the tile in the tileset ([x,y]
format)
t: i64
The Tile ID in the corresponding tileset.
Trait Implementations§
Source§impl Clone for TileInstance
impl Clone for TileInstance
Source§fn clone(&self) -> TileInstance
fn clone(&self) -> TileInstance
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TileInstance
impl Debug for TileInstance
Source§impl<'de> Deserialize<'de> for TileInstance
impl<'de> Deserialize<'de> for TileInstance
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl LdtkTileExtensions for TileInstance
impl LdtkTileExtensions for TileInstance
fn to_world(&self, layer: &LayerInstance) -> Vec2
Auto Trait Implementations§
impl Freeze for TileInstance
impl RefUnwindSafe for TileInstance
impl Send for TileInstance
impl Sync for TileInstance
impl Unpin for TileInstance
impl UnwindSafe for TileInstance
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more