Tilemap#setLayer()
  • References/Game Development/Phaser/Tilemaps/Tilemap

setLayer(layer) Sets the current layer to the given index. Parameters

2025-01-10 15:47:30
Tilemap#random()
  • References/Game Development/Phaser/Tilemaps/Tilemap

random(x, y, width, height, layer) Randomises a set of tiles in a given area. Parameters

2025-01-10 15:47:30
Tilemap#enableDebug
  • References/Game Development/Phaser/Tilemaps/Tilemap

enableDebug : boolean If set then console.log is used to dump out useful layer creation debug data.

2025-01-10 15:47:30
Tilemap#getTileRight()
  • References/Game Development/Phaser/Tilemaps/Tilemap

getTileRight(layer, x, y) Gets the tile to the right of the tile coordinates given.Mostly used as an internal function by calculateFaces

2025-01-10 15:47:30
Tilemap#layer
  • References/Game Development/Phaser/Tilemaps/Tilemap

layer : number | string | Phaser.TilemapLayer

2025-01-10 15:47:30
Tilemap#getTileBelow()
  • References/Game Development/Phaser/Tilemaps/Tilemap

getTileBelow(layer, x, y) Gets the tile below the tile coordinates given.Mostly used as an internal function by calculateFaces

2025-01-10 15:47:30
Tilemap#tileHeight
  • References/Game Development/Phaser/Tilemaps/Tilemap

tileHeight : number The base height of the tiles in the map (in pixels). Source

2025-01-10 15:47:30
Tilemap#format
  • References/Game Development/Phaser/Tilemaps/Tilemap

format : number The format of the map data, either Phaser.Tilemap.CSV or Phaser.Tilemap.TILED_JSON.

2025-01-10 15:47:30
Tilemap#tilesets
  • References/Game Development/Phaser/Tilemaps/Tilemap

tilesets :array An array of Tilesets. Source code:

2025-01-10 15:47:30
Tilemap#fill()
  • References/Game Development/Phaser/Tilemaps/Tilemap

fill(index, x, y, width, height, layer) Fills the given area with the specified tile. Parameters

2025-01-10 15:47:30