Page 1 of 1

Stepping through Animations

PostPosted: Sat Oct 08, 2011 1:42 am
by EvanBlack
Ok... Maybe its just me.. But I searched for Animation with the search bar and nothing at all showed up.

How do I step through the animation index?

I have a button, I want the animation to change when the button is down and then change again when it is up. I tried using this.

Code: Select all
ChangeAnimationDirection("Event Actor", FORWARD);
ChangeAnimationDirection("Event Actor", STOPPED);


But the animation doesn't change.

Re: Stepping through Animations

PostPosted: Sat Oct 08, 2011 2:19 am
by Game A Gogo
Code: Select all
animpos++;

Re: Stepping through Animations

PostPosted: Sat Oct 08, 2011 2:44 am
by EvanBlack
alright! thanks