1 using System.Collections.Generic;
17 public static void LogEnumerable<T>(IEnumerable<T> enumerableToDebug,
string separator =
", ",
string message =
"", Object context =
null)
19 enumerableToDebug.DebugLog(separator, message, context);
28 public static void LogWarningEnumerable<T>(IEnumerable<T> enumerableToDebug,
string separator =
", ",
string message =
"", Object context =
null)
30 enumerableToDebug.DebugLogWarning(separator, message, context);
39 public static void LogErrorEnumerable<T>(IEnumerable<T> enumerableToDebug,
string separator =
", ",
string message =
"", Object context =
null)
41 enumerableToDebug.DebugLogError(separator, message, context);
Class containing additional methods to ease debugging while developing a game.
static void LogErrorEnumerable< T >(IEnumerable< T > enumerableToDebug, string separator=", ", string message="", Object context=null)
Creates a 'Debug.LogError' message with all the contents in the enumerable.
static void LogEnumerable< T >(IEnumerable< T > enumerableToDebug, string separator=", ", string message="", Object context=null)
Creates a 'Debug.Log' message with all the contents in the enumerable.
static void LogWarningEnumerable< T >(IEnumerable< T > enumerableToDebug, string separator=", ", string message="", Object context=null)
Creates a 'Debug.LogWarning' message with all the contents in the enumerable.