Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Expressions Delay Point path animation

  • Dan Ebberts

    February 7, 2024 at 7:13 pm

    You could try a path expression like this:

    delay = .1;
    p0 = points(time);
    iT0 = inTangents(time);
    oT0 = outTangents(time);
    for (i = 0; i < p0.length; i++){
    p = points(time - i*delay);
    p0[i] = p[i];
    iT = inTangents(time - i*delay);
    iT0[i] = iT[i];
    oT = outTangents(time - i*delay);
    oT0[i] = oT[i];
    }
    createPath(p0,iT0,oT0,isClosed())
  • Dries Van Broeck

    February 8, 2024 at 8:12 am

    Magic! Thanks Dan! Exactly what I needed.

  • Brie Clayton

    February 8, 2024 at 2:14 pm

    Thanks for the solve, Dan!

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy