LaboratoryProtection/Assets/PMaker/Logger.cs

11 lines
170 B
C#
Raw Permalink Normal View History

2023-09-12 15:55:51 +08:00
using UnityEngine;
public class Logger : MonoBehaviour
{
private void Awake()
{
#if !UNITY_EDITOR
Debug.unityLogger.logEnabled = false;
#endif
}
}