Super thanks to that. I am just getting started and want to use Away3d in conjunction with 3ds for my 3d game im building. Is there any good set of tutorials on using the different aspects of Away3d like handling collision detection, etc ?
Thanks, Chris On Jul 8, 7:26 am, ben <[email protected]> wrote: > HI ! > for sure you can : > > playerCharacter = Max3DS.load("models/sudoChar.max", > { material:"red#black", name:"turtle", scaling:1, y:50, x:0, z:0, > rotationX:-90, loadersize:300}); > ///here it is > playerCharacter.addOnSuccess(loadModelComplete); > > function loadModelComplete(e:LoaderEvent) { > view.scene.addChild(e.loader.handle);// your player character content > as ObjectContainer3D > view.render(); > > }
