Hello,
I exported a mesh in prefab to awd fomat (awd1 and awd2). Tried to load it with the latest away3d4 and it throws this error:
[Fault] exception, information=RangeError: Error #1125: The index 16777216 is out of range 1.
Apparently its in the aw2 parser:
RangeError: Error #1125: The index 16777216 is out of range 1.
at away3d.loaders.parsers::AWD2Parser/parseNextBlock()[/Users/robbateman/Documents/Adobe Flash Builder 4.6/away3d-core-fp11/src/away3d/loaders/parsers/AWD2Parser.as:298]
at away3d.loaders.parsers::AWD2Parser/proceedParsing()[/Users/robbateman/Documents/Adobe Flash Builder 4.6/away3d-core-fp11/src/away3d/loaders/parsers/AWD2Parser.as:218]
at away3d.loaders.parsers::ParserBase/onInterval()[/Users/robbateman/Documents/Adobe Flash Builder 4.6/away3d-core-fp11/src/away3d/loaders/parsers/ParserBase.as:309]
at flash.utils::Timer/_timerDispatch()
at flash.utils::Timer/tick()
Is it a common error? Maybe its my model, I attach my model. Does anyone get it? This is the code I use:
var _loader:Loader3D;
_loader = new Loader3D(); _loader.addEventListener(LoaderEvent.RESOURCE_COMPLETE, assetCompleteHandler);
_loader.load(new URLRequest("assets/characters/export/Modelo.awd"));