public static string GetText(this UIText self) { self.ActivatingComponent(); return(self.unity_uitext.text); }
public static void SetText(this UIText self, string text) { self.__DisableI18Component(); self.__text_key = null; self.unity_uitext.text = text; }
public static void SetTextColor(this UIText self, Color color) { self.ActivatingComponent(); self.unity_uitext.color = color; }