Button.js 421 B

12345678910111213141516171819202122
  1. class Button extends UIObject
  2. {
  3. constructor(name, label = "Button")
  4. {
  5. super(name);
  6. this.P5Element = createButton();
  7. this.label = label;
  8. this.P5Element.html(label);
  9. this.P5Element.position(0, 0);
  10. this.setStyle(DEFAULT_STYLE);
  11. this.connectCallbacks();
  12. }
  13. setLabel(label)
  14. {
  15. this.label = label;
  16. this.P5Element.html(label);
  17. }
  18. }