NodeData::SetDParameter() Manual
NodeData based classic plugin classes can implement NodeData::SetDParameter() . This allows to change parameters that are set and it allows to react to this event. This is typically done to handle data that is not stored in the object's BaseContainer . It is also used to change parameter values when another parameter was changed.
NodeData::SetDParameter() corresponds to C4DAtom::SetParameter() .
NodeData::SetDParameter() is called when the value of a parameter is set with C4DAtom::SetParameter() . It is possible to change this value before it is stored in the element's BaseContainer .
Bool SetDParameter( GeListNode * node, const DescID & id , const GeData & t_data, DESCFLAGS_SET & flags) { if (node == nullptr ) return false ;// mark parameter as set flags |= DESCFLAGS_SET::PARAM_SET ;
// return from the function, don't call the function of the base class. return true ; } // This example sets the value of another parameter based on the value of the given parameter.
case EXAMPLE_GENERATOR_PARAMETER_VALUE: { const Int32 twice = t_data. GetInt32 () * 2; node-> SetParameter (EXAMPLE_GENERATOR_PARAMETER_VALUE_TWICE, twice, DESCFLAGS_SET::NONE );The arguments of the function are:
If the parameter is set through user-interaction in the Attribute Manager the message MSG_DESCRIPTION_POSTSETPARAMETER will be sent to the element. See also 交互 .
Certain cases have to be handled with special functions: