예제 #1
0
        public static void LogError(string _string)
        {
            LogText logText = thePool.GetLogText();

            logText.SetUp(errorColor, _string);
            logText.gameObject.SetActive(true);
        }
예제 #2
0
        public static void LogWarning(string _string)
        {
            LogText logText = thePool.GetLogText();

            logText.SetUp(warningColor, _string);
            logText.gameObject.SetActive(true);
        }