-
Wiggling in Particular
Hi all
I’m trying to get some light streaks (as in Andrew Kramer’s great tutorial) to wiggle around the position of a null object in Particular. My expression is this:
x = thisComp.layer(“EmitNull”).transform.position[0];
y = thisComp.layer(“EmitNull”).transform.position[1];
wa = thisComp.layer(“EmitNull”).effect(“WiggleAmt”)(“Slider”);
wf = thisComp.layer(“EmitNull”).effect(“WiggleFreq”)(“Slider”);
w = wiggle(wf, wa);
x += w[0];
y += w[1];
[x, y]WiggleAmt and WiggleFreq are just two sliders I set up to make things easier to control. This works, *BUT* for some reason the light streaks appear about 345 pixels to the right of the null object. Nothing’s parented to anything else. The comp is 836 x 24 pixels and it doesn’t seem to affect the Y position. Any ideas?
Cheers
Nick