Computes a grayscale value for the given RGB color value.
| Parameter | Type | Default Value |
|---|---|---|
| color | Node<vec3> | — |
Returns
Node<vec3>Super-saturates or desaturates the given RGB color.
| Parameter | Type | Default Value |
|---|---|---|
| color | Node<vec3> | — |
| adjustment? | Node<float> | — |
Returns
Node<vec3>Selectively enhance the intensity of less saturated RGB colors. Can result in a more natural and visually appealing image with enhanced color depth compared to ColorAdjustment#saturation.
| Parameter | Type | Default Value |
|---|---|---|
| color | Node<vec3> | — |
| adjustment? | Node<float> | — |
Returns
Node<vec3>Updates the hue component of the given RGB color while preserving its luminance and saturation.
| Parameter | Type | Default Value |
|---|---|---|
| color | Node<vec3> | — |
| adjustment? | Node<float> | — |
Returns
Node<vec3>Computes the luminance for the given RGB color value.
| Parameter | Type | Default Value |
|---|---|---|
| color | Node<vec3> | — |
| luminanceCoefficients | Node<vec3> | — |
Returns
Node<float>Color Decision List (CDL) v1.2
Compact representation of color grading information, defined by slope, offset, power, and saturation. The CDL should be typically be given input in a log space (such as LogC, ACEScc, or AgX Log), and will return output in the same space. Output may require clamping >=0.
| Parameter | Type | Default Value |
|---|---|---|
| color | Node<vec4> | — |
| slope | Node<vec3> | — |
| offset | Node<vec3> | — |
| power | Node<vec3> | — |
| saturation | Node<float> | — |
| luminanceCoefficients | Node<vec3> | — |
Returns
Node<vec4>TSL function for creating a posterize effect which reduces the number of colors in an image, resulting in a more blocky and stylized appearance.
| Parameter | Type | Default Value |
|---|---|---|
| sourceNode | Node | — |
| stepsNode | Node | — |
Returns
Node