-
CC Particle World varied width streak
I am creating a 3D line that writes on using CC Particle World with expressions tying the position of the producer to a null object with a wiggle expression. I am trying to make the size of the particles get larger when the null object slows down and make them smaller when it speeds up, creating a line that varies in width as if it was drawn with an ink pen or something. I’ve tried using “.speed” but it has only given me the opposite effect. Here is what my code on the “Birth Size” property looks like:
scaleFactor = 20;
s = thisComp.layer(“Particle position”).transform.position.speed;
value*(s/scaleFactor)I also would like to be able to set a maximum and minimum so that it doesn’t get too thin or too thick.
Can anyone help me out with this?
Nate