Turning certain effects off and on with hotkeys

  • ReLiFeD
  • Topic Author
More
10 years 4 months ago #1 by ReLiFeD Turning certain effects off and on with hotkeys was created by ReLiFeD
I use a very heavy DoF that's just meant for screenshots, because of this I would like to be able to permanently turn it off and on by pressing button. I currently have it setup like this:
"#define DoF_ToggleKey VK_INSERT"
The problem with that is that it turns on again as soon as it recompiles the shaders, which happens everytime you swap between maps in Guild Wars 2. To avoid that I just turn it on and off manually in the config files, but that's a bit tedious.

Please Log in or Create an account to join the conversation.

  • BrandonHortman
More
10 years 4 months ago #2 by BrandonHortman Replied by BrandonHortman on topic Turning certain effects off and on with hotkeys
#define DoF_ToggleKey 0x23 <---- I use the end key for DOF

Please Log in or Create an account to join the conversation.

  • Ganossa
More
10 years 4 months ago #3 by Ganossa Replied by Ganossa on topic Turning certain effects off and on with hotkeys
Open \ReShade\McFX\DoF.h
Find line technique DoF_Tech
Change < bool enabled = RFX_Start_Enabled; ... > to < bool enabled = false; ... >
The following user(s) said Thank You: ReLiFeD

Please Log in or Create an account to join the conversation.