説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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