public static void Log(string LogText) { LogNumber += 1; if (LogNumber == 1) { CreateDebugFile(); } ConWin.UpdateDebugLog("Debug.Log #" + LogNumber + ": " + LogText); UpdateDebugFile("Debug.Log #" + LogNumber + ": " + LogText); }
public static void WG(string LogText) { ConWin.UpdateDebugLog("WG: " + LogText); }
public static void Environment(string LogText) { ConWin.UpdateDebugLog("Environment: " + LogText); }