Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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