After starting debug mode, for about 1 minute I can’t start the game. Is it only about 1 minute, but still it is very annoying;
I have heard to press “Attach to Unity and Play” but for me, it doesn’t work.
Also, when I wait and THEN start, almost always this happens:
I can debug normally, but it still loads.
note - I’m using debug mode, not release mode. Maybe this effects
From what I understand from your visual studio screen:
You have visual studio in debug mode, and it reached a break point executing the code.
This stops the code from executing, so Unity is frozen.
If you click on the code should start executing again and unity should unfreeze.
Or you can use f10 or f11 to advence the code step by step.
If unity is frozen when the continue button is greyed out , then their might be an error somewhere else.
If by “resume” you mean the continue button, then I can’t press the button in the debugger.
And by using EditorApplication.isPaused = false
Then the game will automatically un-pause, so what is the point by pausing in the first place?