reorder_inputs
Reorders input connections of a Houdini node by specifying a new input order list. Use it to rearrange or disconnect node inputs.
Instructions
重新排列节点的输入顺序。
参数说明:
- node_path: 目标节点路径。
- new_order: list of input_index,按新顺序排列(如 [2, 0, 1] 表示把
原 input 2 移到 input 0,依此类推)。空 list 表示全部断开。
- order: 旧版别名;若同时传 new_order 与 order,以 new_order 为准。
返回 dict 包含 path / old_order / new_order / success 四项;
节点不存在时函数会抛 ValueError,bridge 不会再以 success:True 形式
静默吞错。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ctx | Yes | ||
| order | No | ||
| new_order | No | ||
| node_path | Yes |