Hello, can I load 3ds file with mouse eventes and textures? I use next code, but it doesn't work the mouse events. thanks.
var logo:Loader3D;
var obj3D:Object3D = new Object3D();
logo = Max3DS.load("assets/vwc.3ds",
{texturePath:"assets/",name:"logo3D",loadersize:100});
obj3D = logo.handle;
trace(logo.handle);
obj3D.useHandCursor = true;
View.scene.addChild(logo);
obj3D.addOnMouseDown(mov);
function mov(event:MouseEvent3D):void{
trace("work it");
event.object.x +=10;
}
