Custom Events¶
Vibe Blueprints supports local Custom Events without unsupported user-defined parameters through a deferred repair workflow.
Why calls are deferred¶
A newly pasted Custom Event does not immediately have a generated destination function.
Creating its call too early can produce an invalid self-context reference.
Repair process¶
After paste, Repair imported assets:
- compiles the Blueprint;
- locates the generated local event function;
- replaces supported deferred call placeholders;
- restores connections;
- refreshes nodes;
- compiles again.
Important warning¶
Do not create a same-named normal function as a workaround for an unresolved Custom Event call.
This can create a conflicting function graph instead of calling the event.
Current limitation¶
Custom Events with user-defined parameters may require manual reconstruction or a visible placeholder.