1. 程式人生 > >[UnityUI]改變字型顏色

[UnityUI]改變字型顏色

參考連結:http://www.unitymanual.com/thread-38099-1-1.html

方法:<color=#XXXXX>你想變色的字</color>

其中#XXXXX可以參考這裡:http://www.114la.com/other/rgb.htm

using UnityEngine;
using System.Collections;
using UnityEngine.UI;

public class TestColor : MonoBehaviour {

    public Text text1;
    public Text text2;
    public string s = "<color=#00FF00>你好</color><color=#FFFF00>世界</color>";

	// Use this for initialization
	void Start () 
    {
        text1.text = string.Format("hello<color=#FF0000>{0}</color>", "world");
        text2.text = s;
	}
}

在UGUI中有Text元件,勾選Rich Text也可以修改字型

b(加粗)、i(傾斜)、size(大小)和 color (顏色)