-
I must be busy this morning, continued!
Hey
Following from my earlier post (I must be busy this morning, 2 posts!) I would like to try and generate a new position each time opacity = 100 but hold in that position until opacity reaches 0.
The current code I have in opacity:
prop=thisComp.layer(“Bass 3”).effect(“Both Channels”)(“Slider”);
threshold=5;
fadeOut=1; // in secondst=time;
while (t>time-fadeOut) {
if (prop.valueAtTime(t)>=threshold) {
break;
}
t-=thisComp.frameDuration;
}linear (time, t, t+fadeOut, 100, 0)
Many thanks
Olly