“UNITY Animator Compruebe si la animación está reproduciendo” Código de respuesta

UNITY Animator Compruebe si la animación está reproduciendo

bool isPlaying(Animator anim, string stateName)
{
    if (anim.GetCurrentAnimatorStateInfo(animLayer).IsName(stateName) &&
            anim.GetCurrentAnimatorStateInfo(animLayer).normalizedTime < 1.0f)
        return true;
    else
        return false;
}
Tense Thrush

Compruebe si la animación está reproduciendo la unidad

if (myAnimator.GetCurrentAnimatorStateInfo(0).IsTag("Example"))
Easy Eagle

Respuestas similares a “UNITY Animator Compruebe si la animación está reproduciendo”

Preguntas similares a “UNITY Animator Compruebe si la animación está reproduciendo”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código