Does anybody know if it's possible to compose a text() with different colors for specific characters?
For instance I have 2 strings that I concatenate together to obtain a string that I visualize as text():
String t = chars;
String au = auths;
String tau = au.concat(t);
fill(0);
text(tau, x,y);
How can I use different colors for "t" and "au" respective chars????
Tnx!
√
1