Is there a way to grab one of the 3 components of a color and change it?
in
Programming Questions
•
1 year ago
For example if I had
c = color (111,222,333)
then can I do something like
b = c.red // b == 111
or c.red = c.red*.5
Is this possible? I have been searching to no avail. :\
c = color (111,222,333)
then can I do something like
b = c.red // b == 111
or c.red = c.red*.5
Is this possible? I have been searching to no avail. :\
1