Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
12345678910111213141516 |
- using JetBrains.Annotations;
- using UnityEditor;
-
- namespace JetBrains.Rider.Unity.Editor
- {
- // Do not rename this class while you don't rename startup command for dotTrace profiler
- [UsedImplicitly]
- internal static class StartUpMethodExecutor
- {
- [UsedImplicitly]
- public static void EnterPlayMode()
- {
- EditorApplication.isPlaying = true;
- }
- }
- }
|