吴佳轶 发布的文章

使线段两端跟随两个图层的位置移动

  • 创建形状图层 - 添加路径
  • 形状图层 - 路径添加如下表达式:
// 把 A、B 的锚点转换为合成坐标
var A_comp = thisComp.layer("形状图层 2").toComp(thisComp.layer("形状图层 2").anchorPoint);
var B_comp = thisComp.layer("形状图层 3").toComp(thisComp.layer("形状图层 3").anchorPoint);

// 把合成坐标转换为当前 Shape Layer 的本地坐标
A = thisLayer.fromComp(A_comp);
B = thisLayer.fromComp(B_comp);

// 创建开口路径
createPath([A, B], [], [], false);

- 阅读剩余部分 -

1. AE CEP

AE CEP(Adobe Common Extensibility Platform)是 Adobe 提供的一种跨产品插件开发平台,允许开发者使用 Web 技术(HTML、CSS、JavaScript)开发跨 Adobe 应用的扩展插件。CEP 插件支持 After Effects、Premiere Pro、Illustrator 等 Adobe 应用,并通过 ExtendScript 或 Adobe 的 API 与这些应用程序进行交互。

- 阅读剩余部分 -

注:以下教程参考了B站@Nenly同学的安装攻略,并简化完善了一些步骤。

1.Stable Diffusion WebUI 简介

Stable Diffusion WebUI 是由一位越南开发者 Automatic1111 基于 Stable Diffusion 制作的可视化参数调节与对海量扩展应用支持的界面系统,可以很方便的使用和管理 Stable Diffusion。

Stable Diffusion WebUI GitHub 仓库:

https://github.com/AUTOMATIC1111/stable-diffusion-webui

- 阅读剩余部分 -