AWS Thinkbox Discussion Forums

3dsmax submitter error image sampler

Hello,

User uses 3dsmax 2016 with Vray 3.20.03. While running submit this error shows:
–Unknown property: “imageSampler_type_new” in
V_Ray_Adv_3_20_03:V_Ray_Adv_3_20_03
(see attachment)

tried different image samplers, same result. Also he is submitting via proxy server, but I don’t think this makes any difference. I cannot test on other machines because we have vray 3.40

Thanks

I’ll have to download this old version of V-Ray and see what’s up here with this property as it’s fine in 3.4 and 3.50/3.55. You can work-around this for now, by disabling: “Export Renderer-Specific Advanced Settings” in SMTD -> Un-check “Chaos Group V-Ray”:
docs.thinkboxsoftware.com/produc … ptions-tab

Ok, thanks.

ok, MXS prop was only added in 3.4, so you can fix this by editing your “SubmitMaxToDeadline_Functions.ms” file in your repo: ("<your_repo>/submission/3dsmax/Main/") as follows:

Find these lines:

local enum_list = #("Bucket","Progressive","Adaptive subdivision") format "vray_imageSampler_type_new_enums=%\n" enum_list[renderers.current.imageSampler_type_new+1] to:JobInfoFile for i = 0 to enum_list.count-1 do format "vray_imageSampler_type_new_enums%=%\n" i enum_list[i+1] to:JobInfoFile

and replace it with this:

if (hasProperty renderers.current #imageSampler_type_new) do ( local enum_list = #("Bucket","Progressive","Adaptive subdivision") format "vray_imageSampler_type_new_enums=%\n" enum_list[renderers.current.imageSampler_type_new+1] to:JobInfoFile for i = 0 to enum_list.count-1 do format "vray_imageSampler_type_new_enums%=%\n" i enum_list[i+1] to:JobInfoFile )

Close SMTD and re-open it to receive the update on local submitting machine once the repo file has been updated correctly.

I’ll get this pushed into the next Deadline 8.0 service pack. Thanks.

That worked. Thanks

Privacy | Site terms | Cookie preferences