mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 20:53:39 +00:00
TilemapFilterCallback return value type fix
This commit is contained in:
parent
27a6c60392
commit
815e1460d6
1 changed files with 4 additions and 2 deletions
|
@ -20,13 +20,15 @@ var TilemapLayer = require('./TilemapLayer');
|
|||
var Tileset = require('./Tileset');
|
||||
|
||||
/**
|
||||
* A predicate, to test each element of the array.
|
||||
*
|
||||
* @callback TilemapFilterCallback
|
||||
*
|
||||
* @param {Phaser.GameObjects.GameObject} value - An object found in the filtered area.
|
||||
* @param {number} index - The index of the object within the array.
|
||||
* @param {Phaser.GameObjects.GameObject[]} array - An array of all the objects found.
|
||||
*
|
||||
* @return {Phaser.GameObjects.GameObject} The object.
|
||||
* @return {boolean} A value that coerces to `true` to keep the element, or to `false` otherwise.
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -925,7 +927,7 @@ var Tilemap = new Class({
|
|||
|
||||
/**
|
||||
* For each object in the given object layer, run the given filter callback function. Any
|
||||
* objects that pass the filter test (i.e. where the callback returns true) will returned as a
|
||||
* objects that pass the filter test (i.e. where the callback returns true) will be returned in a
|
||||
* new array. Similar to Array.prototype.Filter in vanilla JS.
|
||||
*
|
||||
* @method Phaser.Tilemaps.Tilemap#filterObjects
|
||||
|
|
Loading…
Reference in a new issue