-
Setting Y maximum to a moving text
Hi guys,
I’m trying to create a falling text using an animation based on position and with the expression below (following a youtube tutorial).
I would like to know if there is a way to allow characters to go only over my ending “land line”, like setting a max value of the “y” position.
Thank you very muchdelay = .1; myDelay = delay*textIndex;t = (time - inPoint) - myDelay; if (t >= 0) {freq =3; amplitude = 50; decay = 12.0; s = amplitude*Math.cos(freq*t*2*Math.PI)/Math.exp(decay*t);[s,s]}else {value}