setTileIndexCallback(indexes, callback, callbackContext, layer)
Sets a global collision callback for the given tile index within the layer. This will affect all tiles on this layer that have the same index.
If a callback is already set for the tile index it will be replaced. Set the callback to null to remove it.
If you want to set a callback for a tile at a specific location on the map then see setTileLocationCallback.
Parameters
Name | Type | Argument | Description |
---|---|---|---|
indexes | number | array | Either a single tile index, or an array of tile indexes to have a collision callback set for. | |
callback | function | The callback that will be invoked when the tile is collided with. | |
callbackContext | object | The context under which the callback is called. | |
layer | number | string | Phaser.TilemapLayer | <optional> | The layer to operate on. If not given will default to this.currentLayer. |
- Source code: tilemap/Tilemap.js (Line 779)
Please login to continue.