Answered
Increasing the value of a property using markers with linear interpolation
Hello Community!
How can I pimp the following expression with a linear interpolation 5 frames before the marker?
if (marker.numKeys > 0) {
nearestMarker = marker.nearestKey(time);
if (nearestMarker.time > time){
nearestMarker.index - 1;
} else {
nearestMarker.index;
}
}
I want to have a smooth transition between the previous and next value 5 frames before the next value.

Many thanks!