Hello.

How can I animate back or reverse the animation of the entity smoothly.
I tried this
Code:
int ctr=10;
while(ctr>=0){
	ent_animate(my,"Take",my.skill1,0);
 	my.skill1 -= time_step*7;
        ctr--; 	
        wait(1);
 }



the animation goes back but then its not smoothly animate.
Thanks in advance.