UNPKG

phaser4-rex-plugins

Version:
15 lines (13 loc) 294 B
export default { setDropEnable(enable) { if (enable === undefined) { enable = true; } this.dropEnable = enable; return this; }, toggleDropEnable() { this.dropEnable = !this.dropEnable; return this; }, }