diff --git a/Reporter/Reporter.cs b/Reporter/Reporter.cs index 475743c..fa100d5 100644 --- a/Reporter/Reporter.cs +++ b/Reporter/Reporter.cs @@ -301,8 +301,16 @@ enum DetailView #endif string systemMemorySize; + [SerializeField] private bool deactivateInRelease = default; + void Awake() { + if (deactivateInRelease && !Debug.isDebugBuild) + { + gameObject.SetActive(false); + return; + } + if (!Initialized) Initialize();