On 11/05/2015 at 01:43, xxxxxxxx wrote:
it is in GetDDescription()
cid = DescLevel(ids, DTYPE_VECTOR, 0);
if (!singleid || cid.IsPartOf(*singleid, nullptr))// important to check for speedup c4d!
{
BaseContainer dt = GetCustomDataTypeDefault(DTYPE_VECTOR);
std::string dName = kndData->nodes[kndData->selectedNode].getInputDataName(i);
String dtName(dName.c_str());
dt.SetString(DESC_SHORT_NAME, dtName);
dt.SetString(DESC_NAME, dtName);
dt.SetBool(DESC_ANIMATE, DESC_ANIMATE_ON);
dt.SetInt32(DESC_CUSTOMGUI, CUSTOMGUI_SUBDESCRIPTION);
//dt.SetInt32(DESC_CUSTOMGUI, CUSTOMGUI_VECTOR);
if (!description->SetParameter(cid, dt, DescLevel(Tbaselist2d)))
return true;
}