Announcement

Collapse
No announcement yet.

VRay warning message at scene opening

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

  • VRay warning message at scene opening

    Hello,

    I'm pretty sure this has been discussed somewhere, but I don't seem to be able to find it ... about the VRay Warning message we get when opening an "old" scene, with "this version of V-Ray includes an updated adaptive image sampling method ....", is it possible to somehow set it in silent mode, once and for all, choosing YES ? I'm running a little script to apply several settings in batch to many .max files, and this VRay Warning pops up at every scene opening, thus making the batch work much more boring than it should be, because I've to stay in front of my computer to click on YES for every file

    Thanks in advance for any help

    Regards.
    Nicolas Caplat
    www.intangibles.fr

  • #2
    Hello,

    You could use
    Code:
    setVRaySilentMode() true
    in MaxScript but it would be like clicking No to every popup.

    Then you could add these to the script:

    Code:
    # For new 3.3 behavior: 
    renderers.current.twoLevel_adaptiveMethod=1
    renderers.current.progressive_dynNoiseThreshold=30 # progressive sampler gradually reduces the noise threshold when 30% of all pixels are left
    renderers.current.options_rgbColorSpace=1 # 1=new sRGB
    renderers.current.dmc_useLocalSubdivs=false
    renderers.current.gi_reflectCaustics=true
    renderers.current.imageSampler_shadingRate=6
    Best regards,
    Yavor
    Yavor Rubenov
    V-Ray for 3ds Max developer

    Comment


    • #3
      Hello Yavor,

      Thanks for your answer.

      Regards.
      Nicolas Caplat
      www.intangibles.fr

      Comment

      Working...
      X