Announcement

Collapse
No announcement yet.

VBS Tools

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • VBS Tools

    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.
    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

  • #2
    Yep already search for that one as well but never took time to ask

    +1

    Stan
    3LP Team

    Comment


    • #3
      Will make a note to look into it; you can actuall write a small MaxScript to do that using vfbControl() command.

      Best regards,
      Vlado
      I only act like I know everything, Rogers.

      Comment


      • #4
        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()
        add or remove parameters to your liking.

        Comment

        Working...
        X