Tile#faceBottom

faceBottom : boolean Is the bottom of this tile an interesting edge? Source code: tilemap/Tile.js (Line 104)

Tile#faceLeft

faceLeft : boolean Is the left of this tile an interesting edge? Source code: tilemap/Tile.js (Line 109)

Tile#faceRight

faceRight : boolean Is the right of this tile an interesting edge? Source code: tilemap/Tile.js (Line 114)

Tile#faceTop

faceTop : boolean Is the top of this tile an interesting edge? Source code: tilemap/Tile.js (Line 99)

Tile#flipped

flipped : boolean Whether this tile is flipped (mirrored) or not. Source code: tilemap/Tile.js (Line 49)

Tile#height

height : number The height of the tile in pixels. Source code: tilemap/Tile.js (Line 69)

Tile#index

index : number The index of this tile within the map data corresponding to the tileset, or -1 if this represents a blank/null tile. Source code: tilemap/Tile.js (Line 29)

Tile#intersects()

intersects(x, y, right, bottom) Check for intersection with this tile. Parameters Name Type Description x number The x axis in pixels. y number The y axis in pixels. right number The right point. bottom number The bottom point. Source code: tilemap/Tile.js (Line 170)

Tile#isInteresting()

isInteresting(collides, faces) → {boolean} Is this tile interesting? Parameters Name Type Description collides boolean If true will check any collides value. faces boolean If true will check any face value. Returns boolean - True if the Tile is interesting, otherwise false. Source code: tilemap/Tile.js (Line 275)

Tile#layer

layer : Object The layer in the Tilemap data that this tile belongs to. Source code: tilemap/Tile.js (Line 24)