API ReferenceGE Extensionsflowgraphnodeslogic
Bundle (Flowgraph Node)
- **Node Name:** `Bundle`
Overview
- Node Name:
Bundle - Category:
logic - Type:
simple - File:
extensions/flowgraph/nodes/logic/bundle.lua
A simple passthrough node that bundles flow connections to improve graph readability. Does no processing - just forwards flow from input to output.
Pin Schema
Input Pins
| Pin | Type | Description |
|---|---|---|
flow | flow | Inflow for this node |
Output Pins
| Pin | Type | Description |
|---|---|---|
flow | flow | Outflow for this node |
Behavior
work()- Directly copies the input flow value to the output flow pin.
How It Works
This node is purely organizational. It acts as a routing waypoint for flow connections, allowing graph authors to reduce visual clutter by consolidating multiple flow wires through a single point.
Example Usage
-- No code equivalent - this is a visual organization tool
-- Use it to route flow wires cleanly through complex graphs
-- Input flow is forwarded 1:1 to output flowSee Also
- And (Flowgraph Node) - Related reference
- Boolean Expression (Flowgraph Node) - Related reference
- Branch (Flowgraph Node) - Related reference
- FlowGraph Guide - Guide