0
0

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 3 years have passed since last update.

[AEスクリプトコピペ用] 最近よくある漫画動画のデフォセッティング

Last updated at Posted at 2020-09-10

デフォルトで必ず設定するものだけコピペ用に置いておく

スクリプトの内容は
現在開いている(ウィンドウで表示されている)コンポジションに対して
カメラレイヤーを追加(目標と位置も設定)
そしてレイヤーインデックス2の3Dレイヤー化・モーションブラーをオン
コンポジションのモーションブラーをオン

今のデフォセッティングはこんぐらいかな。
あとで追加していくかも

var myComp = app.project.activeItem;
var addCam = myComp.layers.addCamera("cam",[myComp.width/2,myComp.height/2]);
addCam.transform.position.setValue([myComp.width/2,myComp.height/2,-2666.6667]);

myComp.layer(2).threeDLayer = true;
myComp.layer(2).motionBlur = true;

myComp.motionBlur = true;

ちなみにカメラの位置の設定の配列[2]は撮影距離なんだけども、今回は直接数字を入れているけど
カメラの焦点距離を変えると変わるから詳しく知りたい人はこの動画をチェックしてみて!

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?