유니티 C# 디버그 로그 종류 Debug.Log 간단 사용법


유니티 C# 디버그 로그 종류 Debug.Log 간단 사용법

코드 작성 using UnityEngine; public class Example : MonoBehaviour { void Awake() { Debug.Log("회색 디버그 로그"); Debug.LogWarning("노란색 디버그 로그"); Debug.LogError("빨간색 디버그 로그"); } } 참고할만한 글 유니티 C# 비속어 필터 적용 inputfield 간단 사용법 Assets / Resoures / BadWord.txt 준비 코드 작성 using System.Collections; using System.Collections.Generic; using System.IO; using System.Text.RegularExpressions; using UnityEngine; using Unity..


원문링크 : 유니티 C# 디버그 로그 종류 Debug.Log 간단 사용법