internal static void SetProfilerDeepProfile(bool deepProfile)
        {
#if UNITY_2019_3_OR_NEWER
            ProfilerWindow.SetEditorDeepProfiling(deepProfile);
#else
            ProfilerDriver.deepProfiling = deepProfile;
            RequestScriptReload();
#endif
        }
예제 #2
0
 internal static void SetProfilerDeepProfile(bool deepProfile)
 {
     ProfilerWindow.SetEditorDeepProfiling(deepProfile);
 }