Copy link to clipboard
Copied
Is there a script out there to turn on motion blur in one shot? I have a script that does one comp at a time... but I have a plethora of comps to do.
Copy link to clipboard
Copied
Should be pretty straightforward:
function enableMotionBlur(){
for (var i = 1; i <= app.project.numItems; i++){
var comp = app.project.item(i);
if (comp instanceof CompItem){
for (var j = 1; j <= comp.numLayers; j++){
if (comp.layer(j) instanceof AVLayer){
comp.layer(j).motionBlur = true;
}
}
comp.motionBlur = true;
}
}
}
enableMotionBlur();
Copy link to clipboard
Copied
Thanks!