AE脚本网站是一个专门为Adobe After Effects开发者和编辑器提供各种脚本、插件、教程、工具和资源的网站。这个网站不仅可以帮助开发者节省大量时间和精力在重复性的工作中,而且可以扩展After Effects的功能,提高编辑效率和品质。在本文中,我们将介绍一些常用的AE脚本网站和如何使用脚本来优化您的工作流程。
下面是一个使用AEscripts.com上的“Move Anchor Point”脚本将图层锚点移动到中心点的示例:
// select all the layers you want to move the anchor point for var selectedLayers = app.project.activeItem.selectedLayers; for (var i = 0; i < selectedLayers.length; i++) { // get the layer's size and width var layerSize = selectedLayers[i].sourceRectAtTime(0, true); var layerWidth = layerSize.width; // move the anchor point to the center selectedLayers[i].property("Anchor Point").setValue([layerWidth / 2, layerSize.top + layerSize.height / 2]); }
下面是一个使用aescripts + aeplugins上的“Optical Flares”插件创建立体的光晕效果的示例:
// create a new solid layer var newLayer = app.project.activeItem.layers.addSolid([1, 1, 1], "Optical Flares", 1920, 1080
下一篇:AE扩展脚本分层源文件