Hey Dan — How could I change this expression so that the letters appear randomly and then stay (dont dissapear?)
I want letters to appear at different times, but eventually for the whole word to be seen.
Thanks!
freq = 1;
txt = text.sourceText;
curMax = -999;
for (i = 0; i < txt.length; i++){
seedRandom(i,true);
w = rotation.wiggle(freq,1);
if (w > curMax){
curMax = w;
idx = i;
}
}
textIndex == idx ? 0 : 100