-
Member
Is something wrong with "config" file to cancel auto screenshots ?
Please note that I changed the values in "config" file as shown below
<paragon_capture enabled="0" hide_overlay="0" />
But HUD still keeps taking auto screenshots for paragons..
-
Active Member
Code:
Hud.GetPlugin<ParagonCapturePlugin>().StopRenderingWhenCapturing = false;
Hud.GetPlugin<ParagonCapturePlugin>().Enabled = false;
or
Code:
Hud.TogglePlugin<ParagonCapturePlugin>(false);
in your PluginEnablerOrDisablerPlugin.cs
-
Post Thanks / Like - 3 Thanks
-
Member
Thank You krxstal,
It worked.. HUD stopped to take screenshots..