-
Interpolate an Int
Working on an expression that is controlled by the value of an Int. I’d like to take the Int and interpolate or ease the value upon change for set amount of frame.
For example
Value at 0:00 = 1;
Value at 3:00 = 2;
Let’s assume 30fps comp and I want the interpolation last 10 frames. Is there an expression that could make it so:
Value at 2:20 = 1;
Value at 2:21 = 1.1;
Value at 2:25 = 1.5;
Value at 2:29 = 1.9;
Value at 3:00 = 2;