-
visible for 2 frames, gone for 4 frames ?!?!?
i try to get a expression together that modifies the opacity of a layer. 100% for 2 frames. 0% for 4 frames.
a good starting point was the searching the cow of course. i found this expression from dan and modified it a little bit.
there = 100;
gone = 0;
f = timeToFrames();
if (f%4 == 0) there else gone;i understand more or less whats going on here but i can’t get it to hold the 100% for 2 frames.
any help is appreciated!