#RGB questions

1 messages · Page 1 of 1 (latest)

old iris
#

How does RGB work exactly? I've tried doing 10 R, 10, G, and 3 B and I got white. It never registered a change unless a value was ten or zero. This is in a beta enabled room; dunno if that changes anything. I tried upping to 100 and incrementing by ten, but the color change was all or nothing. Can someone help me?

#

nvm figured it out

#

I'm kinda stupid

grim ether
#

*For those coming to this thread, RGB values in RecRoom are from [0,1], like a percentage

old iris
#

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?

grim ether
#

or changing saturation by doing Color To HSV then HSV To Color and changing the saturation

old iris
#

...I have no idea what lerp is

grim ether
# old iris ...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