UNPKG

phaser4-rex-plugins

Version:
12 lines (11 loc) 290 B
var HideCells = function () { var preList = this.preVisibleCells; var curList = this.visibleCells; var self = this; preList.forEach(function (cell) { if (!curList.has(cell)) { self.hideCell(cell); } }); } export default HideCells;