Hi,
I am new to Away3D engine. I want to play the animation in a
collada file.I am embedding the dae file in the project
colladaContainer=Collada.parse(Cast.bytearray(ColladaModel),{
materials:
{
monster: modelMaterial
},rotationY: -1
}
scene.addChild(colladaContainer);
var
animationData:AnimationData=colladaContainer.animationLibrary.getAnimation("default");
if(animationData!=null)
animationData.animator.play();
Here the object loaded to the scene successfully but animation is not
working
Please help me...:)