void update_color() { if (bgMesh != null) { bgMesh.SetColor(Color); } }
void UpdateText() { if (bgMesh != null) { bgMesh.SetColor(BackgroundColor); } if (textMesh != null) { textMesh.SetColor((Enabled) ? TextColor : DisabledTextColor); textMesh.SetText(Text); } }
void UpdateText() { if (bgMesh != null) { bgMesh.SetColor(BackgroundColor); } if (textMesh != null) { textMesh.SetColor(TextColor); textMesh.SetText(Text); } if (titleTextMesh != null) { titleTextMesh.SetColor(TitleTextColor); titleTextMesh.SetText(TitleText); } }