You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
703 B
C#
32 lines
703 B
C#
1 year ago
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|