Exemple #1
0
 /// <summary>
 /// Use like Debug.Log
 /// </summary>
 /// <param name="message">String or object to be converted to string representation and displayed in the UI Text</param>
 public static void Log(object message)
 {
     if (instance != null)
     {
         instance._Log(message, instance.debugColor);
     }
 }