Setting Multipass Save Options
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 11/11/2007 at 00:05, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 10.111
Platform: Mac ;
Language(s) : C++ ;---------
I can set the regular save options (compressor type, quality settings, etc) without a problem, but for some reason, I'm having trouble with the multipass settings. Any ideas where I'm going wrong?Here's a code snippet:
(rdbc is the basecontainer with my render data.)
BaseContainer* mpSaveOptions = rdbc->GetContainerInstance(RDATA_MULTIPASS_SAVEOPTIONS);
mpSaveOptions->SetData(QTSAVER_COMPRESSOR, value);Should work, but I'm not seeing any change in the options settings. I've tried SetLong, SetParameter, and setting the rdbc BaseContainer with a new container.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 18/11/2007 at 14:07, xxxxxxxx wrote:
Nevermind. Got it. Just needed to make a copy of the original container, alter the values, and set that back into the render data container.