add help docs and ?

This commit is contained in:
2026-03-30 23:10:42 -07:00
parent ced43bec4f
commit 63d76bac72
76 changed files with 2184 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
# Float Slider
Interactive float slider node. Set min and max bounds, then drag the slider to output a FLOAT value.
## Inputs
None.
## Outputs
| Name | Type | Description |
|------|------|-------------|
| value | FLOAT | Current slider value |
## Controls
| Name | Type | Default | Description |
|------|------|---------|-------------|
| min_value | FLOAT | 0.0 | Lower bound of the slider range |
| max_value | FLOAT | 1.0 | Upper bound of the slider range |
| value | FLOAT (slider) | 0.5 | Current value within [min_value, max_value] |
## Limitations
- None.