Announcement

Collapse
No announcement yet.

material preview quality

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

  • material preview quality

    Searching the forum I didn't find a thread about this.

    My question is: is it possible to increase (or set by rendersettings) the quality of the material preview??

    I found the preview isn't helping, at the moment, overall when you have a reflection/refraction glossiness.

  • #2
    Re: material preview quality

    Currently nowhere (only inside script actually).
    V-Ray For Houdini | V-Ray Hydra Delegate | VRayScene
    andrei.izrantcev@chaos.com
    Support Request

    Comment


    • #3
      Re: material preview quality

      is it possibile to know where we can find the settings fo the material preview render??

      In this way everyone could set the best settings related with CPU performance and needs.

      Or add the preview render settings into the render global settings

      Thanks in advance.

      Comment


      • #4
        Re: material preview quality

        In this way everyone could set the best settings related with CPU performance and needs.
        As I said you could edit the script. Its pretty easy to find preview sections in render.py

        Or add the preview render settings into the render global settings
        This is currently impossible.
        V-Ray For Houdini | V-Ray Hydra Delegate | VRayScene
        andrei.izrantcev@chaos.com
        Support Request

        Comment


        • #5
          Re: material preview quality

          Originally posted by bdancer
          In this way everyone could set the best settings related with CPU performance and needs.
          As I said you could edit the script. Its pretty easy to find preview sections in render.py
          Thank you. I'm not sure but I think that preview settings starts at line number 579 and finish at 603.
          Is it right?

          I've changed in this way but it seems it doesn't use this parameters

          Code:
          		bus['files']['scene'].write("\n// Preview settings")
          		bus['files']['scene'].write("\nSettingsColorMapping {")
          		bus['files']['scene'].write("\n\ttype= 1;")
          		bus['files']['scene'].write("\n\tsubpixel_mapping= 0;")
          		bus['files']['scene'].write("\n\tclamp_output= 0;")
          		bus['files']['scene'].write("\n\tadaptation_only= 0;")
          		bus['files']['scene'].write("\n\tlinearWorkflow= 0;")
          		bus['files']['scene'].write("\n}\n")
          		bus['files']['scene'].write("\nSettingsDMCSampler {")
          		bus['files']['scene'].write("\n\tadaptive_amount= 0.75;")
          		bus['files']['scene'].write("\n\tadaptive_threshold= 0.015;")
          		bus['files']['scene'].write("\n\tsubdivs_mult= 0.001;")
          		bus['files']['scene'].write("\n}\n")
          		bus['files']['scene'].write("\nSettingsOptions {")
          		bus['files']['scene'].write("\n\tmtl_limitDepth= 1;")
          		bus['files']['scene'].write("\n\tmtl_maxDepth= 10;")
          		bus['files']['scene'].write("\n\tmtl_transpMaxLevels= 50;")
          		bus['files']['scene'].write("\n\tmtl_transpCutoff= 0.001;")
          		bus['files']['scene'].write("\n\tmtl_glossy= 1;")
          		bus['files']['scene'].write("\n\tmisc_lowThreadPriority= 1;")
          		bus['files']['scene'].write("\n}\n")
          		bus['files']['scene'].write("\nSettingsImageSampler {")
          		bus['files']['scene'].write("\n\ttype= 1;") # Fastest result, but no AA :(
          		bus['files']['scene'].write("\n\tfixed_subdivs= 10;")
          		bus['files']['scene'].write("\n}\n")

          Comment


          • #6
            Re: material preview quality

            nevermind..now it works...

            Comment


            • #7
              Re: material preview quality

              I've found good settings in quality/speed

              Code:
              		bus['files']['scene'].write("\n// Preview settings")
              		bus['files']['scene'].write("\nSettingsColorMapping {")
              		bus['files']['scene'].write("\n\ttype= 1;")
              		bus['files']['scene'].write("\n\tsubpixel_mapping= 0;")
              		bus['files']['scene'].write("\n\tclamp_output= 0;")
              		bus['files']['scene'].write("\n\tadaptation_only= 0;")
              		bus['files']['scene'].write("\n\tlinearWorkflow= 0;")
              		bus['files']['scene'].write("\n}\n")
              		bus['files']['scene'].write("\nSettingsDMCSampler {")
              		bus['files']['scene'].write("\n\tadaptive_amount= 0.99;")
              		bus['files']['scene'].write("\n\tadaptive_threshold= 0.045;")
              		bus['files']['scene'].write("\n\tsubdivs_mult= 3;")
              		bus['files']['scene'].write("\n}\n")
              		bus['files']['scene'].write("\nSettingsOptions {")
              		bus['files']['scene'].write("\n\tmtl_limitDepth= 1;")
              		bus['files']['scene'].write("\n\tmtl_maxDepth= 5;")
              	                bus['files']['scene'].write("\n\tmtl_transpMaxLevels= 10;")
              		bus['files']['scene'].write("\n\tmtl_transpCutoff= 0.001;")
              		bus['files']['scene'].write("\n\tmtl_glossy= 1;")
              		bus['files']['scene'].write("\n\tmisc_lowThreadPriority= 1;")
              		bus['files']['scene'].write("\n}\n")
              		bus['files']['scene'].write("\nSettingsImageSampler {")
              		bus['files']['scene'].write("\n\ttype= 0;") # Fastest result, but no AA :(
              		bus['files']['scene'].write("\n\tfixed_subdivs= 2;")

              Comment

              Working...
              X