Ejemplo n.º 1
0
 // Clear the console and the native console
 public static void Clear()
 {
     if (ConsoleClearMethod != null)
     {
         ConsoleClearMethod.Invoke(null, null);
     }
 }
Ejemplo n.º 2
0
        // Clear the console and the native console
        public static void Clear()
        {
#if UNITY_EDITOR
            if (ConsoleClearMethod != null)
            {
                ConsoleClearMethod.Invoke(null, null);
            }
#endif
        }