- Home /
Is it possible to disable runtime reloads?
A minor annoyance for me right now is that when I change scripts from outside unity while the game is running, then go back to unity, everything in my game stops working, since there's some parts that can't reload at runtime. So Unity tries to reload all my assemblies every time I do this. I try to remember to stop the game while making changes (since unity refreshes much faster in this case) but often I forget. Is there a way to prevent unity from trying a runtime reload or is there a better way of avoiding this delay?
Answer by eventropy · Nov 14, 2013 at 08:59 PM
I figured out a way to stop unity from running from outside unity using something similar to this autohotkey script:
ControlSend,, ^p, ahk_class UnityContainerWndClass
Your answer
Follow this Question
Related Questions
Execute editor window scripts when project errors are present 0 Answers
loading 3d models in unity editor and in deployed app 1 Answer
Generate Script in Editor Script and GetType() returns null. 3 Answers
Mimic Unity editor at Runtime 0 Answers
Get the functionality of the Editor's 'Step' and 'Pause' at runtime? 1 Answer