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.

プロパティグループのインデックスの構造がよくわからん。[AfterEffects][Expression]

Posted at

プロパティ構造がAEで一番わかりにくい!!

プロパティのオブジェクトを取得するには

thisProperty.propertyGroup(3).propertyIndex

ってな具合でpropertyGroup(インデックス指定)してオブジェクトを取得するんだけど、このインデックスに隠れてるものがあったりしてよくわからん!!!
とりあえずデバック用でわかるようにしてみた。

t = thisComp.layer("ball").content("Character").content("Obj").content("楕円形パス 1").position;
var txt = "";
count = 1;
try{
	while(count <= 10){
		txt += count+":"+t.propertyGroup(count).name+"\r"
		count++
		txt
	}
}catch(e){
	txt
}

image.png

見てもらったら分かる通りコンテンツってものが増えてるせいでインデックスが分けわからなくなる。
多分グループを作成すると、コンテンツという目に見えない物が発生していると思われる。
確かリファレンスにもこんな説明なかったよな~。。。。。

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?