Hi Rob

Thanks for your reply first. anyway,I have solved the animation
problem after change the 3D model's bone to just one form mulit.
However,the new problem come.....
Now I got two same Character Models with different animation.It's
there anyway to copy one Model's animation to another one's?then make
the two Character Models with same animation.
I remember this can be done in last version 3.40 like the code blow:

       [embed(source="assets/daeModel1.dae",mimeType="application/
octet-stream")]
       private var Character1:Class

      [embed(source="assets/daeModel2.dae",mimeType="application/octet-
stream")]
       private var Character2:Class

      var firstModel:ObjectContainer3D=Collada.parse(Character1);
      var secondModel:ObjectContainer3D=Collada.parse(Character2);
      var
secondAnimation:SkinAnimation=secondModel.animationLibrary["default"].animation
as SkinAnimation;
      var
firstAnimation:SkinAnimation=secondAnimation.clone(firstModel) as
SkinAnimation

      firstAnimation.update(getTimer()/1000);

In new Vision3,50,I find out that the Animator change a lot,I am
confuse that Which one should I clone between Animator or
AnimationData?

Reply via email to