1234567891011121314151617181920212223242526272829303132333435363738394041 |
- class Label extends UIObject
- {
- constructor(name, text = "Label")
- {
- super(name);
- this.text = text;
- this.P5Element = createDiv(text);
- this.P5Element.position(0, 0);
- this.setStyle(DEFAULT_STYLE);
- this.connectCallbacks();
- }
- setText(t)
- {
- this.P5Element.html(t);
- this.text = t;
- }
- }
|