Max2013 - StateSets to NetRender

2 votes
Date Updated: 
05/08/2012
Author Name: 
Henrique Melo

I was using 3ds Max 2013 and I realized that you cannot setup State Sets to send all StateSet to Backburner automatically, like in 3ds Max 2012 (with button "Net Render" at Render Setup), you must activate each StateSet by hand and send to Backburner. stupid, right?

It’s a very basic script but works perfectly. This script load all StateSets into a listbox (except Objects StateSet). After you click at "Render All State Sets", it will do a loop inside StateSets to activate each StateSet and open NetRender Dialog.

You can also setup the script do render automatically to backburner using NetRender Manager (see NetRenderManager at MaxScript document).

Version Requirement: 
3ds Max 2013
AttachmentSize
ss2nr.jpg61.57 KB

Comments

Comment viewing options

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

Hello Henrique None of the

Hello Henrique

None of the above links seems to work. Is there a way to download the script ?

best
Jerome

arooj799's picture

It is a very useful

It is a very useful script.
spss help

mhdmhd's picture

why this code results in an

why this code results in an error(*system exception*) in 2013 but not in 2011 ?

Code:

render_m = NetRender.GetManager()
render_m.connect #manual "10.0.0.60"
if( render_m.QueryControl #wait ) do
( render_m.getcontrol() )
render_m.wantControl = true
render_m.SetUpdates false
job = render_m.newJob()
job.name = maxfilename
job.suspended = true
job.submit()
job.state
render_m.Lock false
render_m.wantControl = true
render_m.SetUpdates true
render_m.disconnect()

Mahmoud ElAshry

Comment viewing options

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