Showing results for

tilemap

layers

on excaliburjs.com
excaliburjs.com › docs › isometric
Isometric TileMaps | Excalibur.js
Isometric TileMaps
Excalibur can produce isometric style tile maps! Isometric tilemaps, also known as 2.5D, provide a way to draw maps from a...
excaliburjs.com › docs › tilemap
TileMap | Excalibur.js
...Tilemap
Tilemaps consist of a uniform grid of cells that can be solid or not. Each cell can have it's own graphics.
Tile...
excaliburjs.com › docs › tiled plugin old
Tiled Plugin (v0.28.x and older) | Excalibur.js
Tiled Plugin (v0.28.x and older)
This extension adds support for tile maps from all Tiled map editor files in Excalibur. Use the...
excaliburjs.com › docs › tiled plugin
Tiled Plugin ✨New!✨ | Excalibur.js
...typescript
const tiledMap = new TiledResource(...);// Load tiled map here// Specify a layer and world positionconst tile: TileInfo = tiledMap.getTileByPoint('ground', ex.vec(200, 100...
excaliburjs.com › docs › spritefusion plugin
Sprite Fusion Plugin ✨New!✨ | Excalibur.js
Sprite Fusion Plugin ✨New!✨
Sprite Fusion is a new, exiting, and easy to use tile map editor based on the web! It's goal...
excaliburjs.com › docs › ldtk plugin
LDtk Plugin ✨New!✨ | Excalibur.js
...Currently only supports 2D tile maps.
The current Excalibur plugin is designed to parse all data provided by the .ldtk
format and make it...
excaliburjs.com › api › class › Tile
Tile | API | Excalibur.js
Tile
TileMap Tile
A light-weight object that occupies a space in a collision map. Generally created by a TileMap.
Tiles can draw multiple...
excaliburjs.com › docs › migration
Migration | Excalibur.js
...ex.TileMap.data
has been renamed toex.TileMap.tiles
ex.TileMap.getCell(..)
has been renamed toex.TileMap.getTile(...)
ex.TileMap.getCellByIndex(...)
excaliburjs.com › blog › excalibur 0 25 2 released
Excalibur v0.25.2 Released! | Excalibur.js
...Set the starting layer z (defaults to -1) and get gaming!
typescript
const map = new TiledMapResource('path/to/map.tmx', { firstLayerZIndex: -2 });
typescript
const...
excaliburjs.com › blog › excalibur 0 25 0 released
Excalibur v0.25.0 Released! | Excalibur.js
...These new composite colliders power the new TileMap
cell collisions and also power the new ex.Shape.Capsule(width, height)
collider.
The Capsule
collider...