-
Expression problem
hiho. I want to have a layer to start wiggling more on more. but wiggling shall not start before 2.33 sec (2 sec 10 frames)
so I scripted this expression for the position of the layer:
amp=(time-2.333)*10; // once 2.33 secs are reached the value amp increases from 0 => x
if (amp >= 0) // once 2.33 secs have passed wiggling shall start, but not before 2.33 sec (amp has negative values before 2.33 sec)
{
wiggle(15,amp);
}But AE doesn’t get this to work because it says there hast to be a dimension of “2” instead of “1”…
anyone can help ?