Answers for "unity check if animator has parameter"

C#
0

unity check if animator has parameter

if (Animator.parameterCount > 0)
{
	Debug.Log("Animator has parameters");
}
else
{
	Debug.Log("Animator has no parameters");
}
Posted by: Guest on November-29-2020

Code answers related to "unity check if animator has parameter"

C# Answers by Framework

Browse Popular Code Answers by Language