Description
This optional callback is a single-threaded task for freeing up memory, cleaning resources, or anything required to undo the work performed in BeginEvaluate. The EndEvaluate callback uses the ICENodeContext object to clean up the user data stored in the BeginEvaluate callback.
![]()
|
The input and output ports cannot be accessed at all through the ICENodeContext object in this callback. The Evaluate callback can access both input and output port information and the BeginEvaluate callback can access input ports only in some cases. |
Applies To
Syntax
// C++
CStatus <plugin-item_name>_EndEvaluate( ICENodeContext& in_context )
{
...
}<plugin-item_name> is the name specified in the call to RegisterICENode, with any spaces removed. For example, if you register an ICENode with the name "My ICENode", the callback function names start with "MyICENode".
Parameters
|
Parameter |
Language |
Type |
Description |
|
in_context |
C++ |
The ICENodeContext object. |
See Also
• Evaluate
Autodesk Softimage v7.5