Exemplo n.º 1
0
 public static void warning <T>(T[] args)
 {
     Debug.LogWarning(ArrayTransfer.arr2str(args));
 }
Exemplo n.º 2
0
 public static void error <T>(T[] args)
 {
     Debug.LogError(ArrayTransfer.arr2str(args));
 }
Exemplo n.º 3
0
 public static void with <T>(object target, T[] args)
 {
     Debug.LogFormat("[{0}] -> {1}", target.GetType().Name, ArrayTransfer.arr2str(args));
 }
Exemplo n.º 4
0
 public static void info <T>(T[] args)
 {
     Debug.Log(ArrayTransfer.arr2str(args));
 }
Exemplo n.º 5
0
 public static void join <T>(string separator, T[] args)
 {
     Debug.Log(string.Join(separator, ArrayTransfer.arr2strArr(args)));
 }