Greetings,

I've gone through the workshop tutorial pretty easily and didn't notice this until I came across the problem on my project I am making from scratch. What I am trying to do is if no buttons are pressed my model does a 'stand' animation for .. well .. forever. However after some time the model stops cycling through 'stand' and begins cycling through all the animations. So I first checked my code and compared it to the examples on the forums, wiki, manual, workshop and found no differences. Then I loaded up workshop 21 again and saw the exact same behavior. Regardless of the animation_percentage multiplier, the model goes spaztastic around 45 seconds (based on total_secs)

Code:
action walking_guard()
{ 
	while (1) 
	{ 
		ent_animate(my,"walk",walk_percentage, ANM_CYCLE); // "walk" animation loop
		walk_percentage += 3 * time_step; // 3 = animation speed for "walk"
		wait (1); 
	} 
} 



As shown in the screen shot the model is in frame 'attack' but based on the code it shouldn't get there. Wondering if anyone else has encountered this and how to fix, resolve, work-around it.

I am using the trial version; SED 7.11.1 MED 6.902 WED 7.7 v6.89.

~ Thanks in advance