thisLayer.inPoint

レイヤーのインポイントからスケーリング開始。


・スケール(コントロールレイヤー使用)

scl = (time-thisLayer.inPoint)*thisComp.layer("Circle Control").effect("スライダ制御")("スライダ");
[value[0]*scl,value[1]*scl]


※layer("Circle Control")は任意のレイヤーで。

                                                                                                                    • -

レイヤーのインポイントからフェードアウト開始。
アウトポイントで不透明度0。


・不透明度
linear(time,thisLayer.inPoint,thisLayer.outPoint,100,0);

                                                                                                                    • -

レイヤーの中間点を基点としたフェードイン・アウト


・不透明度
duration = thisLayer.inPoint - thisLayer.outPoint;

if ( time < outPoint+duration/2 ){
linear(time,thisLayer.inPoint,(thisLayer.inPoint-duration/2),0,100);
} else {
linear(time,(thisLayer.inPoint-duration/2),thisLayer.outPoint,100,0);
}