using System.Collections; using System.Collections.Generic; using UnityEngine; public class MyDebuggerHuman : MonoBehaviour { public static string msg; public static void Log(string message) { msg = message; } }