Hi Pappenheimer!

Yes this function is already in whille loop. I'm trying to make the transition between the two animation walk and stand, and I tried to take example from AUM61 but that code is not clear to me, like you say strange is we have different skills for animations? Maybe this example is not good for my case. I need advice how simply make blend betwen two animations. I really stuck with this frown. Here is my animation code:



Code:
function player_animations(){
	my.animation %= 100;
	if (my.animation < 0) { my.animation += 100; }
	
	if (my.state_player == stand) {
		my.animation += 2 * time_step;
		ent_animate (my, "stand", my.animation, ANM_CYCLE);
	} 
	if (my.state_player == run) {
		my.animation += 8.4 * time_step;
		ent_animate (my, "walk", my.animation, ANM_CYCLE); 
	}
}