Additive Interpolation

Hey All,

I have an interpolate chop and a transform chop moving and image of mine.
The interpolate is easing from 0 to .64 and I’m using that to drive the translateX of the transform with this little script – 50 + op(‘interp1’)[0]

Right now it’s adding the interp channel then subtracting so the tx is going from 50 to 50.64 then back again.

I’d like to add it each time so it tweens from 50 to 50.64 then 50.64 to 50.128 etc…

" 50 += op(‘interp1’)[0]" doesn’t seem to be valid and I’ve messed around with the Math chop, but can’t seem to get the effect I need.

Thanks in advance!