- Home /
Playing animation in reverse plays it once only!
I'm trying to reverse the animation for my character using anim.speed =-1, the problem is that the animation gets reversed then stops. and doesn't start all over from the end to the start again. How can I make it continue playing the animation in reverse continuously. Thanks.
 public Animator anim;
     
     void Start () {
             anim = GetComponent<Animator>();
     }
     
     void myMethod() {
                     anim.speed = -1;
     }
 
               Comment
              
 
               
              Your answer
 
 
             Follow this Question
Related Questions
How to loop an animation in reverse? 0 Answers
Stop Animation State in Animator from Speeding Up after Playing it a Second Time? 0 Answers
Playables API - Can I set a speed of the clip ? 0 Answers
2D Animation does not start 1 Answer
Trying to add value to a float in animator each time an animation plays. 0 Answers
