You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think there is a problem with the color selection, it does not match the actual selected color try to select the white in the middle of the color wheel. In other words, you will get a gray 127, 127, 127 instead of white 255, 255, 255.
Good luck,
Faisal
The text was updated successfully, but these errors were encountered:
This is because the SetColor gets a HSL color based on the angle (hue) and saturation. There's no luminance available though so it uses a default of .5, which gives you that middle grey. Change it to 1 and you'll get white... wherever you click in the wheel. Not quite as useful, I think you'll agree!
Not sure on how to fix this one to be honest. I'll have a think.
Fixed the bug where the LightnessColorSlider control couldn't be linked to a ColorWheel via the ColorEditorManager and have the values update as expected. Closing this issue now as you can link them up, then use the Color property of the ColorEditorManager to get a composite value.
The text was updated successfully, but these errors were encountered: