using System.Collections; using System.Collections.Generic; using UnityEngine; public static class BoxDebug { public static void Log(object data) { #if UNITY_EDITOR Debug.Log(data); #endif } }