“Überprüfen Sie, ob die Animation Einheit spielt” Code-Antworten

Einheit Erkennung, ob die Animation abgespielt wird

if(this.GetComponent<Animator>().GetCurrentAnimatorStateInfo(0).normalizedTime >= 1)
{
	//Do something when animator isn't playing
{
SvenVH

Einheit Animator überprüfen, ob die Animation abgespielt wird

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

Überprüfen Sie, ob die Animation Einheit spielt

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

Ähnliche Antworten wie “Überprüfen Sie, ob die Animation Einheit spielt”

Fragen ähnlich wie “Überprüfen Sie, ob die Animation Einheit spielt”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen