A game about forced loneliness, made by TACStudios
1using System.Collections;
2
3namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks
4{
5 internal class MarkRunAsPlayModeTask : TestTaskBase
6 {
7 public MarkRunAsPlayModeTask()
8 {
9 RerunAfterResume = true;
10 }
11 public override IEnumerator Execute(TestJobData testJobData)
12 {
13 // This is a workaround to raise the signal that Playmode Launcher is running.
14 // It is used by the graphics test framework, as there is no api to provide that information yet.
15 PlaymodeLauncher.IsRunning = true;
16 yield break;
17 }
18 }
19}