here there is a problem when the test - scale
scene.addEventListener( MouseEvent3D.MOUSE_OVER, mouseOverEvent );
scene.addEventListener( MouseEvent3D.MOUSE_OUT, mouseOutEvent );
private function mouseOverEvent(e:MouseEvent3D):void {
e.target.setScale( 1.2, 1.2, 1.2 );
}
private function mouseOutEvent(e:MouseEvent3D):void {
e.target.setScale( 1, 1, 1 );
}
when loaded object through XML - box.f3d he did not see, but when created primitive cube-type scale works !