Mylenium
Forum Replies Created
-
Copy your position keyframes into a mask, then use the Stroke effect.
Mylenium
[Pour Myl
-
Looks like Shine applied to some simple randomly moving circles.
Mylenium
[Pour Myl
-
In the “Opacity over Life” graph, use the random button. Then smooth out the graph again by overpainting the curve start. If that is not enough, animate a flicker in the pre-comp for your custom particle. If you’re having more problems, feel free to ask again.
Mylenium
[Pour Myl
-
Get yourself Digital Anarchy’s Anarchy Toolbox and use Path Distort to make a pre-comped, straight lightning bend around your path.
Mylenium
[Pour Myl
-
Mylenium
December 14, 2006 at 12:44 pm in reply to: Concentric circles and tangential still frames — how do I do this?Sure, some simple trig will do:
num_items=24; //number of images
angle=degreesToRadians(360/num_items); //per-item angle
radius=250; //radius of the circleX=thisComp.width*0.5+Math.sin(angle*index)*radius;
Y=thisComp.height*0.5+Math.cos(angle*index)*radius;[X,Y]
This will create a perfect circle. Ideally you should have each circle in a separate comp. If that’s not possible, make sure to add the offsetts from the other circles to the index value. For the rotation simply add or subtract the segment angle multiplied with the index.
num_items=24; //number of images
angle=360/num_items; //per-item angle[angle*index]
Mylenium
[Pour Myl
-
Mylenium
December 14, 2006 at 12:44 pm in reply to: Concentric circles and tangential still frames — how do I do this?Sure, some simple trig will do:
num_items=24; //number of images
angle=degreesToRadians(360/num_items); //per-item angle
radius=250; //radius of the circleX=thisComp.width*0.5+Math.sin(angle*index)*radius;
Y=thisComp.height*0.5+Math.cos(angle*index)*radius;[X,Y]
This will create a perfect circle. Ideally you should have each circle in a separate comp. If that’s not possible, make sure to add the offsetts from the other circles to the index value. For the rotation simply add or subtract the segment angle multiplied with the index.
num_items=24; //number of images
angle=360/num_items; //per-item angle[angle*index]
Mylenium
[Pour Myl
-
Mylenium
December 14, 2006 at 12:36 pm in reply to: expression/parenting problem… not the usual kind?You need to use layer space transforms like toComp() to convert your relative parented position to absolute composition coordinates. Do a search, this has been covered quite a bit in the past.
Mylenium
[Pour Myl
-
Mylenium
December 14, 2006 at 12:36 pm in reply to: expression/parenting problem… not the usual kind?You need to use layer space transforms like toComp() to convert your relative parented position to absolute composition coordinates. Do a search, this has been covered quite a bit in the past.
Mylenium
[Pour Myl
-
Huh? Do you mean keying? You cannot have real transparencies in video files, they are stored in the Alpha channel. By default AE’s composition background is black and it will use that to fill in pixels that are otherwise transparent. Unless you have an application that interprets the Alpha channel (like AE itself), you will never see the transparencies. Just make sure you choose a CoDec that supports Alpha channels as an output module (Lossless, Animation).
Mylenium
[Pour Myl
-
Turn off the auto-light in the render options.
Mylenium
[Pour Myl