My sprinting animation isnt working , there are no errors but its not budging … im using the standard fps controller with some edits to the script … i want to play the sprint animation only if im sprinting
function Update ()
{
if(isSprinting == true)
{
sprintAnime.Play(sprintString);
}
else
{
sprintAnime.Stop(sprintString);
}
}