Hi, I am able to create a label no problem:
in c#:
var label = new Label();
AddChild(label);
label.text = "blah";
however when I try to setup a RichTextLabel
the same way, nothing shows. I assume that there is some init like fonts I need to setup, but there doesn't seem to be a clear way to do so (and docs don't say)