Create Event function pulldown empty

Can anyone enlighten me as to how a Create Event blueprint works. Trying to extend the ARHitResult Event Dispatcher from the HandheldAR template and can’t recreate the Create Event node because the function pulldown list only contains [NONE] now
This is the working Create Event from HandheldAR template

This is my broken one after adding an additional parameter to Event Dispatcher

Solution here:

So the node “Create Event” is basically the way to bind a function (class method) to Event Dispatcher (basically, the same as “Custom Event”, but instead of an event a function is used). Signatures for Event Dispatcher and function should match, only then you can see you function in the list of possible functions.

The already created Custom Event for this event was the problem. In details panel you need to make sure the inputs match those of the Event Dispatcher

https://forums.unrealengine.com/development-discussion/blueprint-visual-scripting/36140-create-event-node

1 Like