@jetdv Hi Edward. Your thoughts on this please.
I'm trying to determine whether a particular plugin is present in an event's plugin chain.
According to the API, the function VideoEvent.Effects.Contains(PlugInNode) should return a boolean indicating
whether PlugInNode is present in the chain. I can't get this to work. The bit of code I'm using is this:-
bool AlreadyApplied = True;
Effect effect = new Effect(plugin); //plugin is class PlugInNode obtained earlier in the script
AlreadyApplied = VideoEvent.Effects.Contains(effect);
This doesn't seem to return the result I expect. Am I missing something?
Thanks in advance.