我已经在数组中包含了一些成分。
x = *is an item inside an array* ..
y = 1 ; // just one layer in this comp.
myLayer = app.project.item(x).layer(y)
我需要的是应用命令来冻结此层... 搜索了很多地方,但仍然找不到它...
有人可以帮忙吗?
答案 0 :(得分:0)
您需要为相关图层添加时间重映射:
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中Layer对象的属性。