We have have custom node type that I need to filter when I interate through dependency nodes
However, I don't understand how to use MItDependencyNodes with a custom node. Normally, if I wanted to iterate through all lambert nodes, I'd set it up like this:
MItDependencyNodes depIt( MFn::kLambert );
Since we have a custom node that isn't included in MFn::, how do I use MItDependencyNodes if its not in the MFn:: list?
My apparent option is to use MItDependencyNodes depIt( MFn::kInvalid ); and filter out my specific nodes. Is there a better way? It seems to be a syntactical problem