LaboratoryProtection/Assets/PMaker/Logger.cs

11 lines
170 B
C#

using UnityEngine;
public class Logger : MonoBehaviour
{
private void Awake()
{
#if !UNITY_EDITOR
Debug.unityLogger.logEnabled = false;
#endif
}
}