Render Queue Team [SOLVED]
-
On 26/01/2016 at 13:59, xxxxxxxx wrote:
User Information:
Cinema 4D Version: R16
Platform: Mac ;
Language(s) : C++ ;---------
Hi, I've been trying to get some code queuing up some documents for render, but I haven't been able to get it to use the team render, clicking the Team check box.This is the code I've been using.
BatchRender* batchrender = GetBatchRender(); batchrender->AddFile(filepath,batchrender->GetElementCount());
I didn't see any functions for BatchRender to set it, would I need to get the Render Queue dialog and change the parameter there? Not too sure where to look next.
-
On 27/01/2016 at 01:39, xxxxxxxx wrote:
Hello,
it seems you can use BatchRender::SetUseNet() to switch the Team Render status of the render job at the given index.
Best wishes,
Sebastian -
On 27/01/2016 at 11:27, xxxxxxxx wrote:
Thanks! Didn't want to mess with it since it was private, but it's working perfectly.