Back to Tutorials
Blender to After Effects | VFX Tutorial

By Hayden
| February 10, 2022
In this video tutorial you will learn how to use the Blender After Effects addon to take information from Blender and use it in a composition in After Effects. The example we are going to use is a Star Wars TIE fighter flyby. We will be adding particles as well as some lens flares!
The code that you will need:
Position X:
c=thisComp.layer("YOURLAYERNAME").transform.position[0]-thisComp.width/2;
c/thisComp.width;
Position Y:
c=thisComp.layer("YOURLAYERNAME").transform.position[1]-thisComp.height/2;
c/thisComp.width;
Position Z:
c=thisComp.layer("YOURLAYERNAME").transform.position[2];
c/thisComp.width;