Answers for "unity how to add animation"

C#
12

how to play animation with code in unity

public GameObject ExampleNPC;

void Update()
{
    if(Input.GetButtonDown("Animation")) // Make sure to refrence this in Input settings
    {
        ExampleNPC.GetComponent<Animator>().Play("Anim name");
    }
}
Posted by: Guest on August-04-2020

Code answers related to "unity how to add animation"

C# Answers by Framework

Browse Popular Code Answers by Language