- Posts: 55
[SOLVED] Gaussian Blur+Master Effect keybinding
- padolamap
-
Topic Author
- Offline
Less More
7 years 4 months ago - 7 years 4 months ago #1 by padolamap
(solved)Gaussian Blur+Master Effect was created by padolamap
how to make both work in simultaneous, when I apply a deactivates the other.
I have only in ReShade.fx:
#include "GAUSS.fx"
#define VK_SPACE 0x20
#define ReShade_ToggleKey VK_SPACE
I have only in ReShade.fx:
#include "GAUSS.fx"
#define VK_SPACE 0x20
#define ReShade_ToggleKey VK_SPACE
Last edit: 7 years 4 months ago by padolamap.
Please Log in or Create an account to join the conversation.
- Ioxa
-
- Offline
Less More
- Posts: 315
7 years 4 months ago - 7 years 4 months ago #2 by Ioxa
I'm a little unclear on what you're asking. Putting #include "GAUSS.fx" in ReShade.fx should be enough to get them working together. If you want to toggle GAUSS.fx you will have to change this line in GAUSS.fx,
technique t0 < enabled = true; >
to something like this,
technique t0 < enabled = true; toggle = 0x20; >
That will make them both use the same toggle key. If you want to use different keys to toggle them independently just change the number to match the key you want to use.
Hope that answers your question. If you need more help with it, start a new topic in the troubleshooting section.
Replied by Ioxa on topic Gaussian Blur+Master Effect
how to make both work in simultaneous, when I apply a deactivates the other.
I have only in ReShade.fx:
#include "GAUSS.fx"
#define VK_SPACE 0x20
#define ReShade_ToggleKey VK_SPACE
I'm a little unclear on what you're asking. Putting #include "GAUSS.fx" in ReShade.fx should be enough to get them working together. If you want to toggle GAUSS.fx you will have to change this line in GAUSS.fx,
technique t0 < enabled = true; >
to something like this,
technique t0 < enabled = true; toggle = 0x20; >
That will make them both use the same toggle key. If you want to use different keys to toggle them independently just change the number to match the key you want to use.
Hope that answers your question. If you need more help with it, start a new topic in the troubleshooting section.
Last edit: 7 years 4 months ago by Ioxa.
The following user(s) said Thank You: padolamap
Please Log in or Create an account to join the conversation.
- padolamap
-
Topic Author
- Offline
Less More
- Posts: 55
7 years 4 months ago #3 by padolamap
Replied by padolamap on topic Gaussian Blur+Master Effect
ok Thanks
Please Log in or Create an account to join the conversation.
- padolamap
-
Topic Author
- Offline
Less More
- Posts: 55
7 years 4 months ago #4 by padolamap
Replied by padolamap on topic Gaussian Blur+Master Effect
I failed to work, which should put what you suggest, sorry I'm learning and yet not understand much.
thank you very much
thank you very much
Please Log in or Create an account to join the conversation.
- Ioxa
-
- Offline
Less More
- Posts: 315
7 years 4 months ago #5 by Ioxa
No worries, I'm learning too. What part isn't working, Gaussian and Master Effect together or just being able to toggle each on and off?
Replied by Ioxa on topic Gaussian Blur+Master Effect
I failed to work, which should put what you suggest, sorry I'm learning and yet not understand much.
thank you very much
No worries, I'm learning too. What part isn't working, Gaussian and Master Effect together or just being able to toggle each on and off?
Please Log in or Create an account to join the conversation.
- padolamap
-
Topic Author
- Offline
Less More
- Posts: 55
7 years 4 months ago #6 by padolamap
Replied by padolamap on topic Gaussian Blur+Master Effect
solved, I was doing something wrong, and this corrected. thx
Please Log in or Create an account to join the conversation.