Announcement

Collapse
No announcement yet.

autoexposure script shortcut

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

  • autoexposure script shortcut

    Does anyone know how I can have a shortcut to turn vray autoexposure on and off?
    it would be nice to have a shortcut when working off camera in IPR mode.

  • #2
    macroScript AutoExp_On
    category:"!!!"
    buttonText:""
    (
    renderers.current.camera_autoExposure = true
    )

    than place it wherever comfortable (quad menu for me)
    Marcin Piotrowski
    youtube

    Comment


    • #3
      would it be possible for the button or action to be toggle mode?
      that the icon is checked when active (blue) and unchecked (grey) when it is deactivated
      Last edited by kino_unico; 14-04-2021, 02:53 PM.

      Comment


      • #4
        if (renderers.current.camera_autoExposure == true) then (renderers.current.camera_autoExposure = false) else (renderers.current.camera_autoExposure = true)
        Marcin Piotrowski
        youtube

        Comment


        • #5
          great thank you very much!!!

          Comment

          Working...
          X