#RGB questions
1 messages · Page 1 of 1 (latest)
*For those coming to this thread, RGB values in RecRoom are from [0,1], like a percentage
follow up question
how would one make it so an RGB value is set to white, but then certain triggers can make it slowly transition to blue or red without green being a problem?
Lerp
or changing saturation by doing Color To HSV then HSV To Color and changing the saturation
...I have no idea what lerp is
Its a chip, Linear Interpolation
You input 2 values, a Start and an End, then you input a progress, which is linearly interpolated between the Start and End
For example, 5 to 10 with a progress of 0.5 is 7.5, because 7.5 is half way between 5 and 10