Posts 유니티 - Debug.Log()에 색상 넣기
Post
Cancel

유니티 - Debug.Log()에 색상 넣기

Memo


  • <color=></color> 태그를 사용하여 로그 메시지에 색상을 넣을 수 있다.
  • color= 뒤에는 색상 이름 또는 HTML 색상코드를 입력한다.


1
2
3
4
5
6
7
8
9
10
11
12
13
Debug.Log("Default");
Debug.Log("<color=white>White</color>");
Debug.Log("<color=grey>Grey</color>");
Debug.Log("<color=black>Black</color>");
Debug.Log("<color=red>Red</color>");
Debug.Log("<color=green>Green</color>");
Debug.Log("<color=blue>Blue</color>");
Debug.Log("<color=yellow>Yellow</color>");
Debug.Log("<color=cyan>Cyan</color>");
Debug.Log("<color=brown>Brown</color>");

Debug.Log("<color=#FAD656>Custom 1</color>");
Debug.Log("<color=#00FF22>Custom 2</color>");

image


References


This post is licensed under CC BY 4.0 by the author.