Announcement

Collapse
No announcement yet.

access vraysetting via cmd or script

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

  • access vraysetting via cmd or script

    can we chance vray renderteings like AA, GI on/off, dont render final image, load GI from file ...
    via cmd line or script before the render start ?

    insteat of preparing one scene for GI render and one for render afterwards it may be possible to use a script to do so ?
    __________________________________
    - moste powerfull Render farm in world -
    RebusFarm --> 1450 nodes ! --> 2.900 CPU !! --> 20.000 cores !!!
    just 2,9 to 1.2 cent per GHZ hour --> www.rebusfarm.net

  • #2
    It should be possible, I think (well, at least I know people that have done that).

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

    Comment


    • #3
      suppose you have VRay as current render engine

      Code:
      showproperties renderers.current
      will print in the listener every property present in th VRay render dialog (and a few more too, some hidden, some remnants not having any effect anymore).

      so for instance

      Code:
      cr= renderers.current       --to avoid typing the whole thing every time
      cr.imageSampler_type=1      --choose Adaptive DMC as AA method, 0 is fixed, 2 is adaptive subdivs
      cr.filter_on=false          --turn filtering off
      cr.twoLevel_baseSubdivs=1   --set min AA subdivs to 1
      cr.twoLevel_fineSubdivs=4   --and max to 4
      and so on.

      Have fun!
      Lele
      Trouble Stirrer in RnD @ Chaos
      ----------------------
      emanuele.lecchi@chaos.com

      Disclaimer:
      The views and opinions expressed here are my own and do not represent those of Chaos Group, unless otherwise stated.

      Comment

      Working...
      X