So I managed to have the console print out items from a dll that act as Debug.Log. The problem now is in the console if I try double clicking the entry, nothing happens. Any help would be very much appreciated. Below is the code that is in the dll file. The dll file that is generated is in the Assets directory and similar calling Debug.Log() to issue the command.
using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using UnityEngine.Internal;
using UnityEngine;
public static class Debug
{
...
public static void Log(object message)
{
UnityEngine.Debug.Log(message);
}
....
}
↧