create_fusion_node_chain
Builds a sequential chain of Fusion nodes in the current composition, connecting each node's input to the previous output. Define node types, names, and parameters to automate graph creation.
Instructions
Create a chain of connected Fusion nodes in the current composition.
Creates multiple nodes and connects them sequentially (each node's Input is connected to the previous node's output). This is useful for building Fusion node graphs programmatically.
Each node dict supports:
"type" (required): The Fusion node type (e.g. "Background", "Blur")
"name" (optional): Custom display name for the node
"params" (optional): Dict of parameter name-value pairs
Args: nodes: List of node definitions. Each is a dict with "type" (required), optional "name", and optional "params".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nodes | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |