1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

遅延_ディレイ(二次元)のエクスプレッション文 メモ

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]

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?