Skip to main content
Participant
August 20, 2023
解決済み

create from nulls pathのパスの移動時間を初期設定の1秒から2秒程度に遅らせたい

  • August 20, 2023
  • 返信数 1.
  • 242 ビュー

現在AEで[create from nulls path]を使っているのですが、パスの始点から終点までの移動時間を初期設定の1秒から2秒程度に遅らせたいのですが、何か方法はないですか?


【調べてみて分かったこと】
var pathLayer = thisComp.layer("シェイプレイヤー 3");
var progress = thisLayer.effect("Pseudo/ADBE Trace Path")("Pseudo/ADBE Trace Path-0001")/150;【←ココ!!!】
var pathToTrace = pathLayer("ADBE Root Vectors Group")(1)("ADBE Vectors Group")(1)("ADBE Vector Shape");
pathLayer.toComp(pathToTrace.pointOnPath(progress));

 

矢印の数値を触ると移動がおそくなるのですが、そうすると終点までたどり着かなくなる

このトピックへの返信は締め切られました。
解決に役立った回答 Rick Gerard

The speed slider controls the movement of the null along the path. If you want to keep the default timing, keep the same number of frames between the two original keyframes. If you want to delay the start or end, move the keyframes down the timeline. 

 

If you need something else, let us know. Trace Path is the simplest of the Create Nulls From Path script, and the easiest to use.

 

 

返信数 1

Rick GerardCommunity Expert解決!
Community Expert
August 20, 2023

The speed slider controls the movement of the null along the path. If you want to keep the default timing, keep the same number of frames between the two original keyframes. If you want to delay the start or end, move the keyframes down the timeline. 

 

If you need something else, let us know. Trace Path is the simplest of the Create Nulls From Path script, and the easiest to use.

 

 

Participant
August 21, 2023

thank you.