Get a List of All Vray Current Render Values

Hi Everyone,

I know that vr = renderers.current and followed by show vr gives a list of all the Vray render Properties eg

.imageSampler_type : integer
.imageSampler_type_new : integer
.filter_on : boolean
.filter_kernel : maxObject
.filter_size : float
.filter_paramA : float
.filter_paramB : float

however is there a way for get maxscript to return what the values are for each setting.

eg

.imageSampler_type = 1
.imageSampler_type_new = 0
.filter_on = true

I have 2 files that have identical modeling but each file has different render times eg (1 takes 20 mins and the other takes 10 hours) Each render out put is the smae size and i believe i have the same render setup but i must have changed something in the render and want to be able to list all the setting values so compare side by side.

Thanks in advance

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
oliveremley's picture

Thank you jaman

Your a genius,

that is exactly what i need.

Thank you

Oliver Emley
Freelance CAD & Visualization
[email protected]
oliveremley.carbonmade.com

jahman's picture

.

(
ss = StringStream ""
for prop in getPropNames renderers.current do format "%: %\n" prop (getProperty renderers.current prop) to:ss
setClipboardText (ss as string)
ok
)

then you open this site https://www.diffchecker.com/, paste text from clipboard and compare

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.