I’m working on my first project using Away3D and am stumbling on some basic issues. I was trying to use a blurfilter on objects with no result whatsoever. Until I found an example written by tartiflop that gave the answer: use the property ‘ownCanvas’.
Like:
var topPlane:Plane = new Plane({ownCanvas:true});
topPlane.filters.push(new BlurFilter(8, 8));