I have a city full of humans all with basic walking animations created.
They are scripted to follow individual Paths around the level but as yet do not show their animation frames and simply are stationary when they follow the path.
how would i script this so the walking animation cycles over and over?
it appears i need the function ent_animate
and that i may need to use something like
//in the while loop:
my.anm_percent += (8 * time_step) % 100;
ent_animate(my,"walk",my.anm_percent,anm_cycle);
however i am uncertain of really what to do,
Any ideas would be appreciated.
Cheers