On 12/02/2013 at 11:22, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 13
Platform: Windows ;
Language(s) : C++ ;
---------
Hi,
I have an xpresso node that I would like to enrich with some additional description elements. So I overload GetDDescription.
As long as I do not change the "flags" everything is fine, but once I do set the loaded bit the original interface disappears!
Bool XEditNode::GetDDescription(GeListNode *node, Description *description, DESCFLAGS_DESC &flags)
{
if (!description || !node) return FALSE;
if (!description->LoadDescription(node->GetType())) return FALSE;
flags |= DESCFLAGS_DESC_LOADED; //Without this, everything is fine..
return SUPER::GetDDescription(node, description, flags);
}
Can this be confirmed? Is there a workaround? I am really needing this.. :-/
Thanks for any info!!
Best
Samir