[aftereffects] copipe에서 사용할 수있는 스크립트 3D 레이어의 위치를 난수 배치
2994 단어 adobeaftereffectsx표현
코피페용
여러 3D 레이어의 위치(위치 XYZ)를 난수로 무작위로 배치
난수의 max는 random(num)의 num 인수로 건네준다
//グローバル変数
var myComp = app.project.activeItem;
var myLayer = myComp.selectedLayers;
//メソッド
function random (num){
var random = Math.floor( Math.random() * (num+1) );
return random;
}
for ( var i = 0 ; i < myLayer.length ; i++ ){
var myPos = myLayer[i].property("ADBE Transform Group").property("ADBE Position");
myPos.setValue([random(1920),random(1080),random(5000)])
}
Reference
이 문제에 관하여([aftereffects] copipe에서 사용할 수있는 스크립트 3D 레이어의 위치를 난수 배치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/TimeToEdit/items/55512933bd39c929d34e
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
//グローバル変数
var myComp = app.project.activeItem;
var myLayer = myComp.selectedLayers;
//メソッド
function random (num){
var random = Math.floor( Math.random() * (num+1) );
return random;
}
for ( var i = 0 ; i < myLayer.length ; i++ ){
var myPos = myLayer[i].property("ADBE Transform Group").property("ADBE Position");
myPos.setValue([random(1920),random(1080),random(5000)])
}
Reference
이 문제에 관하여([aftereffects] copipe에서 사용할 수있는 스크립트 3D 레이어의 위치를 난수 배치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/TimeToEdit/items/55512933bd39c929d34e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)