Hi, I'm trying to set up a color picker I've gotten from here It can select the colors I am using the "set color" effect to copy the RGB from the color picker but doesn't set the color correctly. Here are some screencaps. Any help would be great
Develop games in your browser. Powerful, performant & highly capable.
I believe Set Color effect takes values 0-100, so you need to divide R,G,B values from Color Picker by 2.55
Same results :(
Use these:
int(ColorPicker.R)/2.55
int(ColorPicker.G)/2.55
int(ColorPicker.B)/2.55
I can't explain why, but it should work :)
It works! Thanks, it means a lot