Is there a way to turn off all the VFB FX's with one toggle? Now, I have to turn off each one, one at a time. It would be nice to toggle it off/on with one button, so I can see the effect it is having on my image.
Announcement
Collapse
No announcement yet.
VBS Tools
Collapse
X
-
VBS Tools
Bobby Parker
www.bobby-parker.com
e-mail: info@bobby-parker.com
phone: 2188206812
My current hardware setup:- Ryzen 9 5900x CPU
- 128gb Vengeance RGB Pro RAM
- NVIDIA GeForce RTX 4090
- ​Windows 11 Pro
Tags: None
-
e.g.
Code:fn toggleVrayVfbControls = ( local params = #(#exposure, #whitebalance, #huesat, #colorbalance, #levels, #curve, #bkgr, #lut, #ocio, #icc, #bloom, #glare) local isOn = (vfbControl params[1])[1] != 0 local newState = not isOn for p in params do vfbControl p newState ) toggleVrayVfbControls()
Comment
Comment