In the game i'm making, the player character keeps doing it's idle animation during inappropriate times like cutscenes. How can I change/remove the animations?
Please check the manual before opening a thread.
QuoteCharacter.SetIdleView(int idleview, int delay)
...
Pass IDLEVIEW as -1 to disable the idle view completely.
Hi Khris,
whenever i have passed -1 for the idle view it displays walk view...
is it me or what?
Apparently it's you, because it works fine for me.
cJones.SetIdleView(10, -1);
10 is the idle view and above produces character constantly doing walk animation without actually walking,
ags 321
Compare this...
QuoteCharacter.SetIdleView(int idleview, int delay)
...
Pass IDLEVIEW as -1 to disable the idle view completely.
to this...
cJones.SetIdleView(10, -1);
... until you spot your mistake.
Snarky
Mistake seen (laugh)
but my example does do as i said (nod)
cheers ;)