Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }