-
Notifications
You must be signed in to change notification settings - Fork 15
Node Color From Floats (v5.5)
Gerard Martin edited this page Jun 19, 2026
·
6 revisions
Warning
This page is for Mutable v5.5. A newer version is available — see the v5.8 version of this page.

Defines a color from its four RGBA components.
Have a color that can be modified by specific channels, like progressively reducing the red channel to make a submerged looking tint.
R: Optional value for the red channel from 0.0 to 1.0. Defaults to 1.0, full red.
G: Optional value for the green channel from 0.0 to 1.0. Defaults to 1.0, full green.
B: Optional value for the blue channel from 0.0 to 1.0. Defaults to 1.0, full blue.
A: Optional value for the alpha channel from 0.0 to 1.0. Defaults to 1.0, opaque.
Color: Resulting color from combining the current values of the four input channels.