This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/ARPlusSystem-250418/Library/PackageCache/com.unity.test-framework@1..../UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSett...

32 lines
703 B
C#
Raw Normal View History

using System;
using UnityEngine;
namespace UnityEditor.TestTools.TestRunner
{
internal class EditModeLauncherContextSettings : IDisposable
{
private bool m_RunInBackground;
public EditModeLauncherContextSettings()
{
SetupProjectParameters();
}
public void Dispose()
{
CleanupProjectParameters();
}
private void SetupProjectParameters()
{
m_RunInBackground = Application.runInBackground;
Application.runInBackground = true;
}
private void CleanupProjectParameters()
{
Application.runInBackground = m_RunInBackground;
}
}
}