Hello! I’m making a color picker for my game. And I’m wondering how it’s possible to change the “hue” of this saturation/brightness gradient image.
1 Like
The easiest method to make a color picker like that is to add an ImageLabel
with white background and set its Image
to be a white gradient that goes to transparent.
You can then adjust that gradient’s color to get the hue.
Then just add another white to transparent gradient (rotated 90 degrees) but color it black.
1 Like
Yeah, almost looks identical! Thanks!