--- syntax
here are the various ways of specifying widget inputs:
format | example | description |
---|---|---|
<number> | 5.3 | a number |
#RRGGBB | #ff831c | a 3-component vector whose values are taken from the given color code. a color picker will be shown next to the input. |
#RRGGBBAA | #ff831c22 | a 4-component vector whose values are taken from the color code. |
<widget name> | add1 | the output from another widget |
<input>,<input> | .pos,0 | a vector composed of a and b (which can themselves be vectors) |
<input>.<component> | .pos.x | extract a single component from a vector |
<input>.<swizzle> | .pos.yxy | reorder vector components (this example is equivalent to .pos.y, .pos.x, .pos.y ) |