unity debug.log()富文本输出


参考的API: https://docs.unity3d.com/Manual/StyledText.html



直接上代码:

using UnityEngine;
using System.Collections;

public class ColorLog : MonoBehaviour {

	// Use this for initialization
	void Start () {
        GreenLog("LogTest");
        BlackLog("LogTest");
        RedLog("LogTest");
        YellowLog("LogTest");
        MagentaLog("LogTest");
	}
	
    //绿色
    public void GreenLog(string str)
    {
        Debug.Log("" + str + "");
    }
   //黑色
    public void BlackLog(string str)
    {
        Debug.Log("" + str + "");
    }
    //红色
    public void RedLog(string str)
    {
        Debug.Log("" + str + "");
    }
  //黄色
    public void YellowLog(string str)
    {
        Debug.Log("" + str + "");
    }
   //洋红色
    public void MagentaLog(string str)
    {
        Debug.Log("" + str + "");
    }
}


运行效果:

unity debug.log()富文本输出_第1张图片



你可能感兴趣的:(Unity,unity,editor)