Type Writing Text effect with expressions - Adobe After Effects Tutorial

Опубликовано: 24 Август 2023
на канале: Edit in Minutes - Quick Tutorials
315
4

In this adobe after effects tutorial, we will be learning to create type writing text animation using expressions in a very simple way. This is also called keyboard typing effect.

Script:
var startAt = 0;
var endAt = 4;
var maxLetters = Math.floor(linear (time, startAt, endAt, 0, value.length));
var result = value.substring(0, maxLetters);
result