words = text.sourceText.split(" ");timePerWord = 0.2;
visibleWords = Math.floor((time - inPoint) / timePerWord);
words.slice(0, visibleWords).join(" ");
Animates text layer visibility by revealing words one at a time, simulating a typewriter or write-on effect.
Contributed by:
Perfect for captions, subtitles, or kinetic typography where text is revealed incrementally.