Health/Assets/OpenCVForUnity/Editor/OpenCVForUnityResetDebugMod...

21 lines
352 B
C#
Raw Normal View History

2023-11-07 13:55:35 +00:00
#if UNITY_EDITOR
using UnityEngine;
using UnityEditor;
using OpenCVForUnity.UnityUtils;
namespace OpenCVForUnity.Editor
{
public class OpenCVForUnityResetDebugMode : MonoBehaviour
{
[InitializeOnEnterPlayMode]
static void InitializeOnEnterPlayMode()
{
Utils.setDebugMode(false);
}
}
}
#endif