Auto UI from parameters
auto_ui_from_paramsCreate a playable control panel from existing node parameters. Automatically infer sliders, toggles, and text fields, append them to a COMP, and optionally bind each control back to the source.
Instructions
Generate a performable control panel from an existing node/COMP's primitive parameters. It reads source_path, infers sliders/toggles/text fields, appends them as custom parameters on comp_path (default source_path), and optionally binds each control back to the source parameter. Use when a generated component has useful parameters but no playable UI yet.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bind | No | Bind generated controls back to source_path parameters. | |
| page | No | Custom-parameter page name for the controls. | Auto UI |
| exclude | No | Parameter names to skip. | |
| comp_path | No | COMP that receives the generated control panel. Defaults to source_path. | |
| parameters | No | Only expose these parameter names. Omit to infer useful primitive parameters. | |
| source_path | Yes | Node or COMP whose parameters should become controls. | |
| max_controls | No | Maximum inferred controls when parameters is omitted. |