UNPKG

@petkoneo/phaser3-rex-plugins

Version:
11 lines (10 loc) 269 B
var HideCells = function () { var preList = this.preVisibleCells; var curList = this.visibleCells; preList.iterate(function (cell) { if (!curList.contains(cell)) { this.hideCell(cell); } }, this); } export default HideCells;