Blueprint Palette
blueprint.palette searches UE Blueprint Action Menu entries for graph node creation. It keeps agents aligned with UE’s own context-sensitive creation model.
Recommended Flow
- Inspect or list the target graph.
- Call
blueprint.palettewithassetPath,graph, and query text. - Select an executable entry.
- Pass the full entry to
blueprint.graph.editwithaddFromPalette.
Do not guess K2 node classes for normal creation.
blueprint.palette
Parameters
| Field | Required | Notes |
|---|---|---|
assetPath | yes | Blueprint asset path. |
graph | no | Preferred graph address: {id} or {name}. |
graphName | no | Legacy graph address. Prefer graph. |
query | no | Search text. |
contextSensitive | no | Defaults to true. |
fromPins | no | Pin context for pin-drag menu behavior. |
limit | no | Defaults to 50. |
offset | no | Paging offset. |
Returned Entries
Palette entries are context-bound. Use them in the same Blueprint, graph, and pin context used for the search.
Some entries describe schema actions or context that cannot be spawned directly. blueprint.graph.edit rejects non-executable entries with a structured error. Choose an executable entry for addFromPalette.