Exemplo n.º 1
0
        public static void LogError(string _string)
        {
            LogText logText = thePool.GetLogText();

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

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