Wave Motion

Creates a smooth, wave-like motion effect on the position of the layer.

Code

amp = 50;
freq = 1;
phase = 0;
[ value[0], value[1] + Math.sin(time * freq * 2 * Math.PI + phase) * amp ]
wavepositionanimation

How to Use

Apply this expression to the Position property to add a gentle vertical wave effect. Adjust `amp` and `freq` to control the wave's amplitude and speed.