-
Gradient controlled time remapping? (Rolling shutter effect)
Hey, so I’m trying to make a, sort of, rolling shutter effect to a layer in After Effects, but I don’t know how to go about this.
My only guess is that I need to make an expression in time remapping, which looks at a gradient to determine how much delay is needed – using Dan Ebberts’ method:
x = thisComp.layer(“Gradient”).sampleImage(transform.position, [.5,.5]/2, true, time)[0];
100*[x,x]The only problem is that it will affect the entire image, instead of affecting it in segments, just like rolling shutter does.
Does anyone know how to do this properly?