Answers for "how to wait for unity animation to finish c#"

C#
0

unity wait for animation to finish

//if animation with name "Attack" finished

if (anim.GetCurrentAnimatorStateInfo(0).IsName("Attack"))
{
	//do something
}
Posted by: Guest on September-08-2020

Code answers related to "how to wait for unity animation to finish c#"

C# Answers by Framework

Browse Popular Code Answers by Language