Skip to content

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:

  1. compiles the Blueprint;
  2. locates the generated local event function;
  3. replaces supported deferred call placeholders;
  4. restores connections;
  5. refreshes nodes;
  6. 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.