phaser - v4.0.0-rc.4
    Preparing search index...
    • Scans the given rectangular area (given in tile coordinates) for tiles with an index matching findIndex and updates their index to match newIndex. This only modifies the index and does not change collision information.

      Parameters

      • findIndex: number

        The index of the tile to search for.

      • newIndex: number

        The index of the tile to replace it with.

      • tileX: number

        The left most tile index (in tile coordinates) to use as the origin of the area.

      • tileY: number

        The top most tile index (in tile coordinates) to use as the origin of the area.

      • width: number

        How many tiles wide from the tileX index the area will be.

      • height: number

        How many tiles tall from the tileY index the area will be.

      • layer: LayerData

        The Tilemap Layer to act upon.

      Returns void