Activity › Forums › Adobe After Effects Expressions › Liquify position…
-
Liquify position…
Posted by Nir on August 13, 2005 at 3:22 pmHello
How can i link liquify Distortion Mesh Offset to a tracker layrer position.
Thanks
NirNir replied 20 years, 9 months ago 2 Members · 2 Replies -
2 Replies
-
Sorklin
August 14, 2005 at 3:15 pmNot hard: use expressions.
After you’ve tracked the point, you’ll need to add a Expression, Point Control effect to the layer. Then you do your distortion mesh the way you like and link the mesh offset to the tracker attach point using the pick whip. This is okay, but the mesh won’t stay on the point, because the coordinates are slightly offset. To fix you rewrite the expression to something like this:
temp = motionTracker(“Tracker 1”)(“Track Point 1”).attachPoint[0]+effect(“Point Control”)(“Point”)[0];
temp1 = motionTracker(“Tracker 1”)(“Track Point 1”).attachPoint[1]+effect(“Point Control”)(“Point”)[1];
[temp, temp1]Then use the Point Control expression controls to slide the mesh to where you want it to be. After that, it should stay stuck to that point.
Reply to this Discussion! Login or Sign Up