Ingen beskrivning
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.

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