Hi, i am trying to make my players animation look better so i tried using ent_blend but how do you use it? I read the manual description of it but it really doesn't help.

here is what i want to use it for,
Code:
if(key_w)
{
	ent_animate(player, "run", run_speed, ANM_CYCLE);
}

if(key_s)
{
	ent_animate(player, "walk_back", walk_speed, ANM_CYCLE);
}

if(key_w == NULL && key_s == NULL)
{
		run_speed = 0; walk_speed = 0;
		 ent_animate(player, "stand", stand_speed, ANM_CYCLE);
}


i want it to go smoothly from stand to run and vice versa. But how would i use ent_blend to do this?

Thanks ahead of time.