Is Create Event creates the same event for the same function every call? Or there will be 2 different events and unbind will try to remove binding of nonexistent event?
As I can understand both cases must have the same behaviour (because CreateEvent node is function call and it can’t store information between calls, so it doesn’t matter whether the same or different nodes is called).
Also, if Create Event actually creates something not cached then there must be two different events and first one will not be unbinded in that case.
I just want to clarify behaviour of unbinding events created with Create Event.
I quickly looked into the source code and saw that the node is actually called “CreateDelegate” and only the display name is “Create Event”. I’m not 100% sure, but it seems that the node is just a container for a function name, signature, scoped class, etc. So when the Bind Event and Unbind Event nodes are executed, they probably check their delegate input connection and read the function name, signature, scoped class, etc. So, bottomline, I would guess that the “Create Event” nodes can be connected to delegate pins just like the normal event nodes and have the desired effect. But I’m unfortunately not 100% sure.