Hey Away3D community,
I just started with Away3D and bought a book the essential guide to 3d in Flash.
Currently I’m stuck at chapter 4. I get the 1023 incompatible override error.
And I don’t know what the problem is.
protected override function _createScene()
{
_loader = new LoaderCube();
_loader.autoLoadTextures=false;
var url:String = 'planet.3DS';
_loader.addEventListener(Loader3DEvent.LOAD_SUCCESS, _onSuccess);
_loader.loadGeometry(url, new Max3DS());
_loader.scale(10);
_view.scene.addChild(_loader);
}
this is the code that Flash says is wrong. All the files are in 1 map. Can anyone help me with fixing this problem?