I try to load MD5 model and animation into away3d with bulkloader.
I success load model:
**************************************************************************
var model:Loader3D = new Loader3D();
model.parseData(bulkLoader.getText(“model”), new MD5MeshParser);
scene.addChild(model.getChildAt(0));
**************************************************************************
But when it come to load animation, I try below code but fail because seq = null:
**************************************************************************
var anim:Loader3D = new Loader3D();
anim.parseData(bulkLoader.getText(“anim”), new MD5AnimParser);
var seq : SkeletonAnimationSequence = anim as SkeletonAnimationSequence;
**************************************************************************
Any idea how to solve it?
thanks alot.