Hi,
I would like to add glow filter to mesh on mouse over but I got an error: Cannot create property filters on away3d.entities.Mesh. So how can I add as3 filter glow to 3d mesh object.
I have used this code:
var glow:GlowFilter = new GlowFilter(0xf6b900,0.8,6,6,2,1,false,false);
_myMesh.filters = [glow];
It doesn’t have to be glow filter. I just want to mark mesh somehow to show mouse is over. Any techniques on mouse over and mouse out on 3d object that I can use?