Editing 3dsmax job properties through monitor script

Hi,

Is it possible to get in and edit the 3dsmax plugin properties from a python script in the Deadline Monitor?

I basically wanted to have a script that the user could run that would change the value of the render noise level in the corona 3dsmax plugin and save the job again.

Any idea how or if I can get access to the job plugins settings?

Screenie to show which bit I need to get at specifically.

Thanks.

Capture

Managed to figure this out last thing on a Friday!

selectedJobs = MonitorUtils.GetSelectedJobs()
job = selectedJobs[0]
job.SetJobPluginInfoKeyValue ("corona_adaptivity_targetError", "1.234")
RepositoryUtils.SaveJob(job)
1 Like

Honestly, I didn’t realize this would work. Good job!

1 Like