More than 5 years have passed since last update.
遅延_ディレイ(二次元)のエクスプレッション文 メモ
1
Last updated at Posted at 2017-06-16
エクスプレッション文の勘違い
まずディレイにはこの分を使います。
.valueAtTime(time-0.3)
2次元を遅延をさせるとき、xとyで分かれているので
size[0].valueAtTime(time-0.3);
と思ってたら
size.valueAtTime(time-0.3)[0];
なんですね。。。
正しいエクスプレッション文はこうでした。
x=value[0];
y=thisComp.layer("yellow").content("グループ 1").content("長方形パス 2").size.valueAtTime(time-0.3)[1];
[x,y]
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme
