12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- class Button extends UIObject
- {
- constructor(name, label = "Button")
- {
- super(name);
- this.P5Element = createButton();
- this.label = label;
- this.P5Element.html(label);
- this.P5Element.position(0, 0);
- this.setStyle(STYLE.DEFAULT_STYLE);
- this.connectCallbacks();
- }
- setLabel(label)
- {
- this.label = label;
- this.P5Element.html(label);
- }
- }
|