备忘UnityUI 支持 RichText
示例:
1.UI
GUIStyle style = new GUIStyle (); style.richText = true; GUILayout.Label("<size=30>Some <color=yellow>RICH</color> text</size>",style);
2.Debug输出
Debug.Log("<color=#ff0000>红色</color>");
官方API地址:https://docs.unity3d.com/Packages/com.unity.ugui@1.0/manual/StyledText.html
文章评论