I made a gani for walking with new sprites, and then I did;
NPC Code:
if (created) {
replaceani walk,ae_walk;
}
and when I hit play, it shows the first frame, my guy moves around, and it never gets to the second frame of the gani.
but when I do;
NPC Code:
if (created) {
replaceani idle,ae_idle;
replaceani walk,ae_walk;
}
My guy "walks" when I am standing still. :x
Edit: I fixed it. :o I forgot Loop and Continuous.
