-
Wiggle expression. Precise time to start and stop
I would like to use the wiggle expression with parameter for time to start and stop like this one:
timeToStart = 2;
timeToStop = 4;if ((time > timeToStart) && (time < timeToStop)){ wiggle(3,25); }else{ value; } but I would like it more precise. Instead of second,I would like to use second/image. I try this way, but it doesn't work timeToStart = 2;12 timeToStop = 4;12 if ((time > timeToStart) && (time < timeToStop)){ wiggle(3,25); }else{ value; } Is there a way to do it. Sorry for my bad english. I'm a french guy. Thank's