반응형
- 코드 작성
using UnityEngine;
public class Example : MonoBehaviour
{
void Awake()
{
Debug.Log("회색 디버그 로그");
Debug.LogWarning("노란색 디버그 로그");
Debug.LogError("빨간색 디버그 로그");
}
}
참고할만한 글
반응형