phaser3-rex-plugins
Version:
46 lines (35 loc) • 1.03 kB
JavaScript
import CreateButtons from '../builders/CreateButtons.js';
const GetValue = Phaser.Utils.Objects.GetValue;
var AddButtons = function (config) {
var scene = this.scene;
if (config === undefined) {
config = {};
}
if (config.hasOwnProperty('label')) {
config.buttons = [{
label: config.label,
callback: config.callback
}];
delete config.label;
delete config.callback;
}
var target = config.bindingTarget;
delete config.bindingTarget;
// Create buttons
var buttonsStyle = GetValue(this.styles, 'inputRow') || {};
var buttons = CreateButtons(scene, config, buttonsStyle);
// Add buttons
this.add(
buttons,
{ expand: true }
);
// Set binding target
if (target) {
buttons.setBindingTarget(target);
}
if (config.key) {
this.root.addChildrenMap(config.key, buttons);
}
return this;
}
export default AddButtons;