Page 1 of 1

animpos help plz

PostPosted: Wed Dec 05, 2007 10:23 pm
by mrgame
ive got this actor and i want when i right click on it the animation goes forward 1 frame.
how?

Re: animpos help plz

PostPosted: Thu Dec 06, 2007 8:11 am
by Bee-Ant
On DrawActor of your actor Change it's AnimationDirection to "Stopped"
And on MouseButtonDown, put this code
Code: Select all
animpos++;

Re: animpos help plz

PostPosted: Thu Dec 06, 2007 5:38 pm
by Spidy
hmm :? ....nice :D

Re: animpos help plz

PostPosted: Thu Dec 20, 2007 8:12 pm
by speckford123
Bee-Ant wrote:On DrawActor of your actor Change it's AnimationDirection to "Stopped"


dont you mean on CreateActor? what if he later wants to restart the animation? they both will work but drawactor will keep doing it over and over :P
but yeah for what he wants that will work just fine.