Is there a script command in Max that I can use to enable or disable distributed rendering? I searched this page in the help documents, but I couldn't find a command for it.
Announcement
Collapse
No announcement yet.
Script command for enabling/disabling DR?
Collapse
X
-
Script command for enabling/disabling DR?
Aleksandar Mitov
www.renarvisuals.com
office@renarvisuals.com
3ds Max 2023.2.2 + Vray 7 Hotfix 1
AMD Ryzen 9 9950X 16-core
96GB DDR5
GeForce RTX 5090 32GB + GPU Driver 572.83Tags: None
-
Hi Alex
you can type:
Code:show renderers.current
It will show a list of things, each starting with a DOT. So in this case the thing we're looking for from that list is:
Code:.system_distributedRender : boolean
So then we showed the properties of our renderer "renderers.current".
To the assign something you take that bit, and add the bit to the end of it from the list ".system_distributedRender", and for the ": boolean" part, is where you assing what it should be
In our case we want to switch it on so it would be:
Code:renderers.current.system_distributedRender = true
...or to switch it off it would be:
Code:renderers.current.system_distributedRender = false
Code:renderers.current.system_distributedRender
Max can also sometimes be fussy and not always show the change in the UI even though it did do the change you told it (if you type a renderer command while the render dialog is option). Sometimes it updates the UI while it's open, sometimes not. I find it easier to just close the dialog before typing anything. You can open the dialog afterwards again to confirm the commands were accepted, if you wishLast edited by Morne; 02-11-2019, 06:09 AM.Kind Regards,
Morne
- Likes 1
-
Very detailed and thorough. Thanks so much, Morne .This did the trick!Last edited by Alex_M; 02-11-2019, 08:10 AM.Aleksandar Mitov
www.renarvisuals.com
office@renarvisuals.com
3ds Max 2023.2.2 + Vray 7 Hotfix 1
AMD Ryzen 9 9950X 16-core
96GB DDR5
GeForce RTX 5090 32GB + GPU Driver 572.83
Comment
Comment