Skip to main content
Participant
May 11, 2023
Question

time control of linear wipe transition

  • May 11, 2023
  • 1 reply
  • 394 views

is there any way in where i can control the duration of linear wipe in essential graphic panel

This topic has been closed for replies.

1 reply

Community Expert
May 12, 2023

You need to add an Expression Control Slider and name it Transition Time. Then add this expression to Linear Wipe/Transform Completion:

d = effect("Transition Time")("Slider") * thisComp.frameDuration;
t = time - inPoint;
linear(t, 0, d, 0, 100)

 The Slider will set the length of the transition in frames. 

 

Solo the supported properties in the Essential Graphics panel and drag the slider in and set a range for it.