속성 그룹의 인덱스 구조를 잘 모릅니다. [AfterEffects][Expression]
2874 단어 adobeAfterEffects표현
속성 구조가 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
}
보면 알 수 있듯이 콘텐츠라는 것이 늘어나는 탓에 인덱스가 나뉘어진다.
어쩌면 그룹을 만들면 콘텐츠라는 눈에 보이지 않는 것이 발생하고 있다고 생각된다.
확실히 레퍼런스에도 이런 설명 없었어~. . . . .
Reference
이 문제에 관하여(속성 그룹의 인덱스 구조를 잘 모릅니다. [AfterEffects][Expression]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/TimeToEdit/items/6eaf2c25adff338cf9c4
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
thisProperty.propertyGroup(3).propertyIndex
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
}
Reference
이 문제에 관하여(속성 그룹의 인덱스 구조를 잘 모릅니다. [AfterEffects][Expression]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/TimeToEdit/items/6eaf2c25adff338cf9c4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)