[aftereffects] コピペで使えるスクリプト 3Dレイヤーの位置を乱数配置
3077 ワード
コピペ用
複数の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)])
}
Author And Source
この問題について([aftereffects] コピペで使えるスクリプト 3Dレイヤーの位置を乱数配置), 我々は、より多くの情報をここで見つけました https://qiita.com/TimeToEdit/items/55512933bd39c929d34e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .