Announcement

Collapse
No announcement yet.

See Settings

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

  • See Settings

    Is there a way to see your V-Ray settings while you are rendering? Often, I want to see a setting that I am using, while I am rendering, but I have to cancel to do that. For instance, right now I want to see which AA filter I am using, because I forgot, but I have to cancel to see it.
    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 X2
    • ​Windows 11 Pro

  • #2
    Can't think of a way, other than opening the file in another copy of max. Assuming you saved before rendering.

    Comment


    • #3
      Originally posted by glorybound View Post
      Is there a way to see your V-Ray settings while you are rendering? Often, I want to see a setting that I am using, while I am rendering, but I have to cancel to do that. For instance, right now I want to see which AA filter I am using, because I forgot, but I have to cancel to see it.
      you read my mind! especially now am using bb, i leave it and come back and while its rendering i start to question a few things but don't want to reopen the file to see, which it came with the rendering dialog or the vfb, would be really useful imho
      Architectural and Product Visualization at MITVIZ
      http://www.mitviz.com/
      http://mitviz.blogspot.com/
      http://www.flickr.com/photos/shawnmitford/

      i7 5960@4 GHZm, 64 gigs Ram, Geforce gtx 970, Geforce RTX 2080 ti x2

      Comment


      • #4
        What settings would you want to see?
        Garry Clarke
        Technical Illustrator
        www.garryclarke.com

        Comment


        • #5
          Well, exposing VRay settings to BackBurner, just as the other settings, would indeed be great ... just wondering how crappy this would be to integrated stuff in BB, when we already see the mess it can be to drive BB with maxscript, but that's another story :P
          Nicolas Caplat
          www.intangibles.fr

          Comment


          • #6
            You could try putting something like this in your startup scripts folder:

            Code:
            fn DumpVRayRenderSettings = 
            
            		(
            		vr=renderers.current
            		propnames=getpropnames vr
            		a=openfile "c:\VRayRenderSettings.txt" mode:"a"
            		for n=1 to propnames.count do (format "%=%\n"(propnames[n]) (getproperty vr propnames[n]) to: a)
            		close a
            		)
            
            callbacks.removescripts id:#VRaySettings
            callbacks.addscript #preRender "DumpVRayRenderSettings()" id:#VRaySettings
            That will dump your current render settings to a file called c:\VRayRenderSettings.txt at each render time. Not sure what happens on the network, if you were using Deadline it's easy enough to see and change settings, but as for BackBurner...it's been years since I've dared touch it.

            Comment


            • #7
              Originally posted by MattClark View Post
              Not sure what happens on the network, if you were using Deadline it's easy enough to see and change settings, but as for BackBurner...it's been years since I've dared touch it.
              Thanks Matt,
              Ahhhh Deadline ... now that they've changed their pricing policy, I guess I'll have to give it a try. Yes, cost is the only remaining thing that keeps me using BB :P
              Nicolas Caplat
              www.intangibles.fr

              Comment

              Working...
              X