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
September 29, 2016
Belmar Shore Panorama
December 19, 2011
Learning ROILA
The RObot Interaction Language (ROILA) is a new spoken language that is optimized for the communication between machines and humans
January 30, 2014
[FIX] Scaling Smart Objects With Nearest Neighbor in Photoshop
How to use Nearest Neighbor interpolation to free transform Smart Objects in Photoshop
October 8, 2011
[How-to-Fix] Processing & JMyron = BSOD
How to fix blue screen of death when using Processing and JMyron
2 Comments
Add comment Cancel reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.




Thanks!
Now, do you know how I can have a transparent plane (so I can see the background) that will still hide other away3D objects that are behind it ?
Call it a transparent plane opaque for away3d…
Hmm, I haven’t looked into it, but maybe there’s a way to use the transparent plane as a mask for the other objects?