how to add events to objects added to bsp tree?
cube.addEventListener(MouseEvent3D.MOUSE_DOWN,objectClick);
_tree.addChild(cube);
does not work
cube.addEventListener(MouseEvent3D.MOUSE_DOWN,objectClick);
_view.scene.addChild(cube);
works but then I can see object through the walls :S