Im trying to use a couple of DropDownList widgets, but in the actual game they look different from UI editor. In editor, I can click and they deploy a list, empty and short, but a list. In the code, I tried to add an item
race = step1.GetChild("race", true);
Text@ glist = Text();
glist.text = "Male";
race.AddItem(glist);
But it doesnt responds to clicks.