weird, i cant seem to add a MouseEvent3D to a cloned mesh, EXAMPLE:
var ITEMS_MESH:Mesh = mesh.getMesh(item);// Item is the vars for the mesh in MAX
var newObject:Mesh = Mesh(ITEMS_MESH.clone());
newObject.addEventListener(MouseEvent3D.MOUSE_OVER,ITEM_INFO);
ItemsArray.unshift(newObject);
_container.addChild(newObject);
function ITEM_INFO(e:MouseEvent3D):void{
trace("foundYou");
}
the mesh appears fine, then when i click the mesh it doesnt fire the (ITEM INFO)