저는 평소에 NullCheck는 매우 중요하게 생각했습니다.. 하지만 일일이 요런 식으로 이븐 하지 못한 코드를 계속 사용하기에는 코드를 짜는 시간이 매우 아까웠습니다.그렇기에 저는 아래의 코드를 만들어 넀습니다.using UnityEngine;using System;public static class Util{ public static bool NullCheck(T Value) { if (Value == null) { Type type = typeof(T); Debug.LogError($"{type.ToString()} Is Null"); return false; } return tr..