On 07/06/2013 at 02:40, xxxxxxxx wrote:
User Information:
Cinema 4D Version: R14
Platform: Windows ;
Language(s) : C++ ;
---------
I have problems including descriptions when using inheritance.
This is the root class
CONTAINER Trootclass
{
GROUP GROUP_ROOTCLASS
{
BUTTON BUTTON_ROOTCLASS {}
}
}
And this is the descendant
CONTAINER Tdescendant
{
**INCLUDE Trootclass;**
GROUP GROUP_DESCENDANT_CLASS
{
BUTTON BUTTON_DESCENDANT {}
}
**INCLUDE Trootclass;**
}
When using the blue alternative, I do not see the root class button at all.
When using the red alternative, I see the root class button, yes. But it behaves strange, I cannot select the GROUP_ROOTCLASS at all in the Attributes Manager in C4D, something is not working here..
How do I use the INCLUDE directive correctly, or furthermore - what have I done wrong?