add_event_dispatcher
Adds an event dispatcher to a Blueprint, enabling Blueprints to broadcast events that others can listen to and respond to.
Instructions
Add an Event Dispatcher to a Blueprint.
Event Dispatchers allow Blueprints to broadcast events that other Blueprints can listen to and respond to.
Args: blueprint_name: Blueprint name dispatcher_name: Name of the event dispatcher params: List of parameter dicts with 'name' and 'type' keys e.g., [{"name": "DamageAmount", "type": "Float"}]
KB: see knowledge_base/02_BLUEPRINT_COMMUNICATION.md#overview Example: add_event_dispatcher(blueprint_name="/Game/MCP_Test/BP_Example", dispatcher_name="ExampleName")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | ||
| blueprint_name | Yes | ||
| dispatcher_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |