I saw that my blog had some search hits for Transparent Planes in Away3D. So if anyone is still looking for it, here’s the code to create a transparent plane. Hope this helps! 🙂

var matBlank:WireColorMaterial = new WireColorMaterial(0xFFFFFF);
matBlank.alpha = 0;
matBlank.wireAlpha = 0;

var plane:Plane = new Plane({material: matBlank, width: 200, height: 200});
Related Posts