Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
1

Tutorial: Self-Wiping 1-Layer Text

Explorer ,
Sep 08, 2022 Sep 08, 2022

//alt-click the stopwatch of Mask Path under Mask1 of a text

//paste this code in that expression field

//animate the Anchorpoint to wipe text in and out, Vertical or Horizontal

a = thisLayer.sourceRectAtTime();

x = thisLayer.transform.position[0];

y = thisLayer.transform.position[1];

h = a.height;

w = a.width;

t = a.top;

l = a.left;

createPath(points=[[l,t]+transform.anchorPoint,[l+w,t]+transform.anchorPoint,[l+w,t+h]+transform.anchorPoint,[l,t+h]+transform.anchorPoint]);

TOPICS
Expressions , How to
157
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 09, 2022 Nov 09, 2022
LATEST

The x and y line can be deleted.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines