Hi all,
When i try to load my collada file I’m getting a
“RangeError: Error #1125: the index 0 is out of range 0.”
It is in the file “AbstractParser.as” on line 285 (latest version from svn)
The collada file is loaded with this function:
public function startupColladaModelObject(collada:XML, init:Init):MeshObject
{
super.startupBaseObject();
if (collada != null)
{
var colladaModel:Collada = new Collada();
model = colladaModel.parseGeometry(collada) as ObjectContainer3D;
engineManager.view.scene.addChild(model);
}
return this;
}
The thing is i can’t change the collada file because it’s generated.
Does anyone know how to fix this? or how to get the collada model on screen?
The collada file is too big to attach here so it can be found here:
http://www.zshare.net/download/935925188f6bd63c/
Thanks in advance
Bas