-
Hi there, I've just noticed that there is some sort of inconsistency on how Three handles colors. Please check this example: Both spheres have the same color assigned: rgb(15,15,255) Yet somehow the hues rendered in the end are noticeably different. If this a problem with Three JS handling color or am I missing something? Any clarification would be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
three handles colors incorrectly, see https://www.donmccurdy.com/2020/06/17/color-management-in-threejs r3f uses srgb colorspace and correct gamma automatically. <Canvas linear> if you want back to three default but this is something you should never do, unless you dig the cheap plastic cgi look |
Beta Was this translation helpful? Give feedback.
three handles colors incorrectly, see https://www.donmccurdy.com/2020/06/17/color-management-in-threejs
r3f uses srgb colorspace and correct gamma automatically.
if you want back to three default but this is something you should never do, unless you dig the cheap plastic cgi look