@petkoneo/phaser3-rex-plugins
Version:
23 lines (19 loc) • 689 B
JavaScript
// For when you know this Set will be modified during the iteration
var EachVisibleCell = function (callback, scope) {
this.visibleCells.each(callback, scope);
return this;
}
// For when you absolutely know this Set won't be modified during the iteration
var IterateVisibleCell = function (callback, scope) {
this.visibleCells.iterate(callback, scope);
return this;
}
var EachCell = function (callback, scope) {
this.table.cells.slice().forEach(callback, scope);
return this;
}
var IterateCell = function (callback, scope) {
this.table.cells.forEach(callback, scope);
return this;
}
export { EachVisibleCell, IterateVisibleCell, EachCell, IterateCell };