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.

StartUpMethodExecutor.cs 369B

12345678910111213141516
  1. using JetBrains.Annotations;
  2. using UnityEditor;
  3. namespace JetBrains.Rider.Unity.Editor
  4. {
  5. // Do not rename this class while you don't rename startup command for dotTrace profiler
  6. [UsedImplicitly]
  7. internal static class StartUpMethodExecutor
  8. {
  9. [UsedImplicitly]
  10. public static void EnterPlayMode()
  11. {
  12. EditorApplication.isPlaying = true;
  13. }
  14. }
  15. }