UNPKG

phaser3-rex-plugins

Version:
18 lines (14 loc) 350 B
var InstallClearButton = function (config) { // this: ArrayTable var button = config.clearButton; if (!button) { return; } button.onClick(function () { if (this.readOnly) { return; } this.clearItemsWithTransition(); }, this) } export default InstallClearButton;