Copy link to clipboard
Copied
現在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));
矢印の数値を触ると移動がおそくなるのですが、そうすると終点までたどり着かなくなる
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.
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
thank you.