12 this.portrait.SetChara(c,
null);
16 this.textBio.text = ((c.currentZone ==
null) ?
"???" : c.currentZone.Name);
20 this.textAlias.text = c.Aka;
23 this.textBio.text =
string.Concat(
new string[]
25 c.race.GetText(
"name",
false).ToTitleCase(
true),
27 Lang.Parse(
"age", c.bio.TextAge(c),
null,
null,
null,
null),
29 Lang._gender(c.bio.gender)
33 this.textName.text = c.Name;
36 this.layoutTag.DestroyChildren(
false,
true);
37 HintIcon hintIcon = Util.Instantiate<HintIcon>(
"UI/Element/Item/Tag General", this.layoutTag);
38 hintIcon.text.SetText(c.job.GetName().ToTitleCase(
true));
39 hintIcon.RebuildLayout(
false);
40 this.layoutTag.RebuildLayout(
false);
48 public UIText textName;
51 public UIText textAlias;
54 public UIText textBio;
57 public UIText textWork;
60 public UIText textHobby;
63 public UIText textLifeStyle;
66 public new UIItem item;
69 public LayoutGroup layoutTag;