如何使用 Extendscript 语言冻结 After Effects 中的图层?
How to freeze a layer in After Effects using Extendscript language?
我的数组中已经有一些组合。
x = *is an item inside an array* ..
y = 1 ; // just one layer in this comp.
myLayer = app.project.item(x).layer(y)
我需要的是应用一个命令来冻结这一层...
找了很多地方还是没找到...
有人可以帮忙吗?
您需要向相关图层添加时间重映射:
myLayer= app.project.item(x).layer(y);
myLayer.timeRemapEnabled = true;
timeRemap = mylayer.property("Time Remap");
timeRemap.setValueAtTime(theTime , theValue); // or is it (theValue, theTime)?
时间重映射是AE中图层对象的属性。
我的数组中已经有一些组合。
x = *is an item inside an array* ..
y = 1 ; // just one layer in this comp.
myLayer = app.project.item(x).layer(y)
我需要的是应用一个命令来冻结这一层... 找了很多地方还是没找到...
有人可以帮忙吗?
您需要向相关图层添加时间重映射:
myLayer= app.project.item(x).layer(y);
myLayer.timeRemapEnabled = true;
timeRemap = mylayer.property("Time Remap");
timeRemap.setValueAtTime(theTime , theValue); // or is it (theValue, theTime)?
时间重映射是AE中图层对象的属性。