No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PlaymodeLauncher.cs 528B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using NUnit.Framework.Interfaces;
  4. using UnityEditor.TestTools.TestRunner.Api;
  5. using UnityEngine;
  6. using UnityEngine.SceneManagement;
  7. using UnityEngine.TestRunner.Utils;
  8. using UnityEngine.TestTools.TestRunner;
  9. using UnityEngine.TestTools.TestRunner.Callbacks;
  10. namespace UnityEditor.TestTools.TestRunner
  11. {
  12. internal class PlaymodeLauncher
  13. {
  14. public static bool IsRunning; // This flag is being used by the graphics test framework to detect EditMode/PlayMode.
  15. }
  16. }