FastScriptReload
FastScriptReload copied to clipboard
Hot Reload implementation for Unity. Iterate on code insanely fast without breaking play session. Supports any editor. 1. Play 2. Make change 3. See results
``` public class SingletonTest { private static SingletonTest _instance; public static SingletonTest Instance { get { if (_instance == null) { _instance = new SingletonTest(); //Won't be rewritten to __Patched_...
As you can see in the screenshot, they were added inside the static function (before the bracket closed), but should be outside 
Currently new file will be created for hot-reloaded code and breakpoints can be added there. Alternatively in IDE wide function-breakpoint can be set referencing patched class name ChangedClass*__Patched_* This works...
 
The compiled script of FSR has a different number of lines compared to the original script, due to the additional comments at the beginning. Have you considered maintaining consistency? 
FSR: HOW TO FIX - INSTRUCTIONS: 1) Open file that caused issue by looking at error log starting with: 'FSR: Compilation error: temporary files were not removed so they can...
`this is what happens to me. First time I deleted for loop it works, because FSR reloaded scripts when coroutine entered the first loop. Second time I delete the same...
I'm using Visual Studio Code and Omnisharp complains that it cannot resolve "0Harmony" because it was built against a different framework version (v4.8) than the currently targeted one (v4.7.1): ```...