Hey,
im using BOX node to check the BUTTON status (pressed/released) and I found a bug related with a RGB color displaying for instance when I set the color to vmath.vector3(255, 128, 0) it will turn into purple (should be orange) or vmath.vector3(255, 255, 255) is black (should be white) and there is much more…
Using 0 to 1 is common notation for floating point colors. 0 to 255 is an old remain from the days when color was only 8-bit. Using floating point color makes for better future proofing. And it is easier to do math with aswell. Really it is better in every way except that people are pretty used to the old 255 range.
Hi! Quick question: if I get an online colour selector where (255,255,255) is pure white, do i just divide the three numbers by 255 to make it into a vmath.vector3()?