Phaser API Documentation

  Version: 
<static> FindByIndex(index, skip, reverse, layer)

Description:

Searches the entire map layer for the first tile matching the given index, then returns that Tile object. If no match is found, it returns null. The search starts from the top-left tile and continues horizontally until it hits the end of the row, then it drops down to the next column. If the reverse boolean is true, it scans starting from the bottom-right corner traveling up to the top-left.

Parameters:

name type description
index number

The tile index value to search for.

skip number

The number of times to skip a matching tile before returning.

reverse boolean

If true it will scan the layer in reverse, starting at the bottom-right. Otherwise it scans from the top-left.

layer Phaser.Tilemaps.LayerData

The Tilemap Layer to act upon.

Returns:
Description:

The first (or n skipped) tile with the matching index.

Since: 3.0.0