I’m doing this:
@serializable(Text)
public testText?: Text = null || undefined;
public testfunc(newText : string): void {
if (this.testText) { this.testText.text = newText; }
}
As long as newtext
is just a normal string, the text get’s replaced normally, but when I’m using a text with <> commands in it, the text is just added to the textfield and the old text is still shown as well.
by user 334342083445784576