Is it possible to change the Debug.Log void and if so is anything like this close:
using UnityEngine;
using System.Collections;
public class Debug : MonoBehaviour {
public override void Log (string debugMsg) {
base.Log ();
var example = "Hey";
}
}
↧