Label.js 366 B

1234567891011121314151617181920
  1. class Label extends UIObject
  2. {
  3. constructor(name, text = "Label")
  4. {
  5. super(name);
  6. this.text = text;
  7. this.P5Element = createDiv(text);
  8. this.P5Element.position(0, 0);
  9. this.setStyle(DEFAULT_STYLE);
  10. this.connectCallbacks();
  11. }
  12. setText(t)
  13. {
  14. this.P5Element.html(t);
  15. this.text = t;
  16. }
  17. }