On 03/10/2016 at 06:33, xxxxxxxx wrote:
User Information:
Cinema 4D Version: R18
Platform: Windows ;
Language(s) : C++ ;
---------
Hello.
I have a VideoPostData as render engine.
Here is my RenderEngineCheck:
Bool RenderEngineCheck(BaseVideoPost* node, Int32 id) {
switch (id) {
case RENDERSETTING_STATICTAB_OUTPUT:
case RENDERSETTING_STATICTAB_SAVE:
case RENDERSETTING_STATICTAB_MULTIPASS:
case MY_RENDER_ENGINE_ID:
return TRUE;
}
return FALSE;
}
The problem is that the contents of Output, Save and Multipass tabs don't appear after I click them. It was working fine in pre R18 versions. Is there anything changed in this part of code ?
Thank you.