I just disabled it so I don't get stutters on paragon level and don't have to go deleting all the screenshots, really not good on an ssd!
I just disabled it so I don't get stutters on paragon level and don't have to go deleting all the screenshots, really not good on an ssd!
Hide the Rum! --> Default theme customization 101 <--
Line 54:
And there's no other line to set it back to 'true'. My best guess would be at line 50:Code:Hud.Render.RenderEnabled = false;
So set RenderEnabled before the return here.Code:if (!captureOn) return;
Unless there are other plugins where you set Hud.Render.RenderEnabled to false, then you'd probably need to check a timer there.Code:if (!captureOn) { if (!Hud.Render.RenderEnabled) Hud.Render.RenderEnabled = true; return; }
Last edited by DysfunctionaI; 11-03-2017 at 11:29 PM.