top of page

Blinking opacity with wiggle

  • Admin
  • Jul 21, 2020
  • 1 min read

This expression adding changing of the parameter to 0 or 100 without in between.

t=wiggle(10,50); //amplitude and intensity of wiggle
if (t > 50) 100; //if 't' will be higher that 50 it will be rounded to 100
else 0; //if not we receieve 0

Комментарии


bottom of page