Announcement

Collapse
No announcement yet.

How To Maxscript Command To Turn AA Settings To Minimum Value

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

  • How To Maxscript Command To Turn AA Settings To Minimum Value

    Again another Maxscript question for the same purpose: for TexMapPreview of Soulburn Script.
    This is for quickly rendering and viewing the procedural maps (or any kind of maps).
    Upon my request, Neil tries to revise the script to work fast with Vray too. And Actually I am being a bridge.

    He told me :
    "As for the AA settings, if you again can get me the code to turn the AA settings to 0 and 0, I can add that to the script as well. I already turn them to 0 for mentalray and brazil, like for mentalray, I use

    renderers.current.MinimumSamples "

    So what is the answer?
    Thanks =)
    for my blog and tutorials:
    www.alfasmyrna.com

  • #2
    You can't set AA to 0 and 0, but I take it you want to set them very low, so use the fixed settings at 1 below

    And It depends on the antialiaser you're using, here are the commands:

    Fixed:
    renderers.current.fixedRate_subdivs = 1

    Adaptive Subdivision:
    renderers.current.adaptiveSubdivision_minRate = 1
    renderers.current.adaptiveSubdivision_maxRate = 1


    Adaptive DMC:
    renderers.current.twoLevel_baseSubdivs = 1
    renderers.current.twoLevel_fineSubdivs = 1
    Colin Senner

    Comment


    • #3
      You can do something like this:
      Code:
      renderers.current.imageSampler_type=0 -- fixed sampler
      renderers.current.fixedRate_subdivs=1 -- one sample per pixel
      Best regards,
      Vlado
      I only act like I know everything, Rogers.

      Comment


      • #4
        To get an array of all properties use "show".

        code:
        show renderers.current

        Comment


        • #5
          Thank you all of you =)
          for my blog and tutorials:
          www.alfasmyrna.com

          Comment

          Working...
          X